實(shí)現(xiàn)rsync文件同步,且不需要手工輸入密碼罗珍,思路如下
測試環(huán)境:
服務(wù)端:Centos7
客戶端:MacOS 10.15.7
1、配置服務(wù)器端需要將rsync程序以 daemon 模式運(yùn)行
1脚粟,編輯同步配置文件
vim /etc/rsyncd.conf
寫入以下內(nèi)容:
uid = root
gid = root
port = 873
read only = no
# 允許訪問的客戶端ip覆旱,多個用逗號分隔
hosts allow = 222.128.9.86
# 運(yùn)行同步的模塊,可配置多個
[epwxWork]
comment = this is module for backup
path = /usr/local/src/
auth users = root
secrets file = /etc/rsyncd.pass
2核无,創(chuàng)建密碼文件
vim /etc/rsyncd.pass
寫入以下內(nèi)容(格式為用戶名:密碼扣唱,用戶名與模塊的auth users相同):
root:eplugger123
設(shè)置密碼文件權(quán)限(必須做)
chmod 600 /etc/rsyncd.pass
3,查看當(dāng)前rsync進(jìn)程团南,殺掉并重啟啟動噪沙。
ps -ef|grep rsync |grep -v grep
kill 進(jìn)程號
rsync --daemon
#再次查看是否已運(yùn)行
ps -ef|grep rsync |grep -v grep
4,添加防火墻服務(wù)端口
firewall-cmd --permanent --zone=public --add-service=rsyncd
systemctl restart firewalld.service
# 確認(rèn)已啟用
firewall-cmd --list-all
2已慢、客戶機(jī)
1曲聂,創(chuàng)建密碼文件rsyncd.pass(為了免手工輸入密碼)
/路徑/rsyncd.pass
寫入密碼(無用戶名),密碼與服務(wù)端配置相同
設(shè)置密碼文件權(quán)限(必須做)
chmod 600 /路徑/rsyncd.pass
2佑惠,執(zhí)行同步
# 其中 epwxWork 為模塊名
# 其中 root 與服務(wù)端的用戶名配置相同
rsync -rltzuq --delete --exclude='.*' 本地路徑 root@服務(wù)端ip::epwxWork --password-file=/路徑/rsyncd.pass
如果沒有很多模塊朋腋,也可設(shè)置全局rsync密碼,這樣就不需要創(chuàng)建密碼文件了膜楷,也不需要--password-file參數(shù)了:
export RSYNC_PASSWORD=密碼
取消環(huán)境變量:
unset RSYNC_PASSWORD