您好,登錄后才能下訂單哦!
1.安裝(客戶端服務端都要安裝)
yum -y install rsync
2.安裝xinetd
yum -y install xinetd
3.修改xinetd配置文件
修改 /etc/xinetd.d/rsync 把 disable = yes 改為disable = no
4.創建rsync服務器配置文件/etc/rsyncd.conf
vi /etc/rsyncd.conf
uid = root gid = root port = 873 hosts allow = 192.168.1.10 hosts deny = * pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock log file = /var/log/rsyncd.log [ddsc] path = /usr/share/nginx/html comment = rsync files ignore errors read only = yes list = no
5.啟動RSYNC
rsync --daemon
6.查看啟動狀態
netstat -anpt |grep 873
7.防火墻開啟策略
iptables -I INPUT -p tcp --dport 873 -j ACCEPT
客戶端:
安裝跟服務端一樣,只要創建一個空的配置文件然后啟動就可以
touch /etc/rsyncd.conf rsync --daemon
開始同步:
在客戶端把服務端(192.168.1.100)的/usr/share/nginx/html目錄同步到本地/usr/share/nginx/html
rsync -vzrtopg --delete --progress 192.168.3.100::ddsc /usr/share/nginx/html/
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。