真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

rsync遠程同步(實例!!!)

rsync 同步概述:

Remote Sync ----- 遠程同步,支持本地復(fù)制,或者與其他SSH 、rsync主機同步,功能類似于scp,但是要比scp豐富。
官方網(wǎng)站:http://rsync.samba.org

rsync 同步特點:

1、可以鏡像保存整個目錄樹和文件系統(tǒng)。

2、可以很容易做到保持原來文件的權(quán)限、時間、軟硬鏈接等等,無須特殊權(quán)限即可安裝。

3、快速:第一次同步時 rsync 會復(fù)制全部內(nèi)容,但在下一次只傳輸修改過的文件。rsync 在傳輸數(shù)據(jù)的過程中可以實行壓縮及解壓縮操作,因此可以使用更少的帶寬。

4、安全:可以使用scp、ssh等方式來傳輸文件,當(dāng)然也可以通過直接的socket連接。
5、支持匿名傳輸,以方便進行網(wǎng)站鏡像。

rsync遠程同步(實例!!!)

我們提供的服務(wù)有:網(wǎng)站設(shè)計制作、做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、武穴ssl等。為上1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的武穴網(wǎng)站制作公司


實例演示

第一步:配置rsync源服務(wù)器

rsync 是系統(tǒng)內(nèi)核自帶的,rpm - q rsync查看包 ,無需額外安裝.如果是最小化安裝的話,使用 yum安裝一下即可

1.修改rsyncd.conf配置文件

[root@server ~]# vim /etc/rsyncd.conf 
#7、8、9行,
uid = nobody
gid = nobody
use chroot = yes

#11行,
pid file = /var/run/rsyncd.pid

#16行,
dont compress   = *.gz *.tgz *.zip *.z *.Z *.rpm *.deb *.bz2

#追加端口號
port 873

#追加日志文件路徑
log file = /var/log/rsyncd.log

#追加授權(quán)訪問地址段
hosts allow = 192.168.142.0/24

#添加共享模塊
#模塊名稱
[wwwroot]

#源共享目錄路徑
path = /var/www/html

#網(wǎng)站說明
comment = www.bdqn.cn

#是否只讀
read only = yes

#認證用戶名
auth users = backuper

#認證用戶密碼文件路徑
secrets file = /etc/rsyncd_users.db

2.創(chuàng)建認證用戶密碼文件

[root@server ~]# vim /etc/rsyncd_users.db
#寫入認證用戶名與密碼
backuper:abc123

3.授權(quán)僅屬主的最大權(quán)限

[root@server ~]# chmod 600 /etc/rsyncd_users.db

4.安裝HTTP的服務(wù)

[root@server ~]# yum install httpd -y

5.創(chuàng)建共享內(nèi)容

[root@server ~]# cd /var/www/html
[root@server html]# echo "this is test web" > index.html

6.開啟服務(wù)

[root@server html]# rsync --daemon

7.查看服務(wù)狀態(tài)

[root@server html]# netstat -ntap | grep rsync
tcp        0      0 0.0.0.0:873             0.0.0.0:*               LISTEN      60268/rsync         
tcp6       0      0 :::873                  :::*                    LISTEN      60268/rsync         

8.關(guān)閉防火墻及安全功能

[root@server html]# systemctl stop firewalld.service 
[root@server html]# setenforce 0

第二步:配置客戶發(fā)起端

1.關(guān)閉防火墻及安全功能

[root@localhost ~]# systemctl stop firewalld.service 
[root@localhost ~]# setenforce 0

2.安裝http服務(wù)

[root@localhost ~]# yum install httpd -y

3.客戶發(fā)起端配置方式

#配置源方式一,用戶名@主機地址::共享模塊名
[root@localhost ~]# rsync -avz backuper@192.168.142.153::wwwroot /var/www/html
Password: #輸入用戶密碼
receiving incremental file list
./
index.html

sent 83 bytes  received 172 bytes  72.86 bytes/sec
total size is 17  speedup is 0.07

#查看共享到的內(nèi)容
[root@localhost ~]# cat /var/www/html/index.html 
this is test web
#配置源方式二,rsync://用戶名@主機地址/共享模塊名
[root@localhost ~]# rsync -avz rsync://backuper@192.168.142.153/wwwroot /var/www/html
Password: 
receiving incremental file list
./
index.html

sent 83 bytes  received 172 bytes  56.67 bytes/sec
total size is 17  speedup is 0.07

#查看共享到的內(nèi)容
[root@localhost ~]# cat /var/www/html/index.html 
this is test web

4.創(chuàng)建免交互密碼文件

[root@localhost ~]# vim /etc/server.pass
abc123

[root@localhost ~]# chmod 600 /etc/server.pass

#免交互配置源方式
[root@localhost ~]# rsync -avz --delete --password-file=/etc/server.pass backuper@192.168.142.153::wwwroot /var/www/html
receiving incremental file list
./
index.html

sent 83 bytes  received 172 bytes  510.00 bytes/sec
total size is 17  speedup is 0.07

#查看共享到的內(nèi)容
[root@localhost ~]# cat /var/www/html/index.html 
this is test web

配合inotify工具使用,實現(xiàn)rsync實時同步

配置rsync實時同步:

1.定期同步的不足:

執(zhí)行備份的時間固定,延遲明細,實時性差;
當(dāng)同步源長期不變化時,密集的定期任務(wù)是不必要的

2.實時同步的優(yōu)點:

一旦同步源出現(xiàn)變化,立即啟用備份;
只要同步源不變化,則不執(zhí)行備份

關(guān)于 inotify:

Inotify 是一個 Linux特性,它監(jiān)控文件系統(tǒng)操作,比如讀取、寫入和創(chuàng)建。Inotify 反應(yīng)靈敏,用法非常簡單,并且比 cron 任務(wù)的繁忙輪詢高效得多。

從版本 2.6.13 開始提供;
可以監(jiān)控文件系統(tǒng)的變化情況,并作出通知響應(yīng);
輔助軟件:inotify-tools

rsync遠程同步(實例!!!)

第一步: 配置rsync+inotify實時同步

1.配置rsync源服務(wù)器,修改rsyncd.conf配置文件

[root@server ~]# vim /etc/rsyncd.conf 
#關(guān)閉只讀
read only = no

2.調(diào)整客戶端的inotify內(nèi)核參數(shù)

[root@client ~]# vim /etc/sysctl.conf
#監(jiān)控隊列大小
fs.inotify.max_queued_events = 16384

#最多監(jiān)控實例數(shù)
fs.inotify.max_user_instances = 1024

#每個實例最多監(jiān)控文件數(shù)
fs.inotify.max_user_watches = 1048576

3.生效內(nèi)核參數(shù)

[root@client ~]# sysctl -p
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576

4.安裝編譯環(huán)境

[root@client ~]# yum install -y gcc gcc-c++ make

5.遠程獲取資源包

[root@client ~]# mount.cifs //192.168.142.1/inotify /mnt
[root@sclient ~]# cd /mnt
[root@client mnt]# ls
inotify-tools-3.14.tar.gz

6.解壓資源包

[root@client mnt]# tar zxvf inotify-tools-3.14.tar.gz -C /opt

7.配置inotify

[root@client mnt]# cd /opt/inotify-tools-3.14/
[root@client inotify-tools-3.14]# ./configure

8.編譯安裝

[root@client inotify-tools-3.14]# make && make install

9.安裝inotify-tools輔助工具

[root@client inotify-tools-3.14]# inotifywait -mrq -e modify,create,move,delete /var/www/html/

#-m表示持續(xù)進行監(jiān)控,-r表示遞歸監(jiān)控所有子對象,-q表示簡化輸出信息,-e表示要監(jiān)控哪些時間類型

10.重開一個終端登錄,增刪文件

#創(chuàng)建文件
[root@client html]# touch abc
[root@client html]# ls
abc  index.html

#刪除文件
[root@client html]# rm -rf abc
[root@client html]# ls
index.html

11.返回監(jiān)控端,驗證同步效果

[root@client inotify-tools-3.14]# inotifywait -mrq -e modify,create,move,delete /var/www/html/
/var/www/html/ CREATE abc       #創(chuàng)建記錄
/var/www/html/ DELETE abc       #刪除記錄

12.通過inotifywait觸發(fā)rsync同步操作腳本

vim inotify.sh
#!/bin/bash
INOTIFY_CMD="inotifywait -mrq -e modify,create,attrib,move,delete /var/www/html/"
RSYNCLCMD="rsyne -azH --delete --password-file=/etc/server.pass /var/www/htm1/ backuper@192.168.142.153::wwwroot/"
$INOTIFY_CMD | while read DIRECTORY EVENT FILE
#讀取輸出的監(jiān)控記錄
do
if [ $(pgrep rsync | wc -l) -le 0 ] ; then
#若rsync為執(zhí)行,則立即啟動
$RSYNC_CMD
fi
done

13.源端于客戶端都需要html目錄最高授權(quán)

[root@server www]# chmod 777 html/
[root@client www]# chmod 777 html/

14.執(zhí)行腳本

[root@client opt]# source inotify.sh

15.重開終端,并切入共享目錄

[root@client opt]# cd /var/www/html/

16.寫入新的內(nèi)容

[root@client html]# echo "this is my update" > test.txt

第二步:驗證實時同步

**1.回到源端查看同步數(shù)據(jù)包**
[root@server html]# ls
index.html  test.txt

2.查看同步數(shù)據(jù)

[root@server html]# cat test.txt 
this is my update

謝謝閱讀!!!


分享文章:rsync遠程同步(實例!!!)
瀏覽路徑:http://weahome.cn/article/gjddoi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部