建立rsync的密碼檔案,格式username:password
$ vi /etc/rsyncd.secrets建立rsync共享配置檔案
$ vi /etc/rsyncd.conf新增如下內容:
pid file = /var/run/rsyncd.pid
port = 873
uid = root
gid = root
use chroot = yes
read only = no
max connections = 1000
secrets file=/etc/rsyncd.secrets
#this will give you a separate log file
log file = /var/log/rsync.log
log format = %t %a %m %f %b
syslog facility = local3
timeout = 300
#for acl
hosts allow = 10.0.0.0/255.0.0.0
hosts deny = *
[transcode]
path=/home/test
read only = no
uid=root
gid=root
auth users = root
啟動rsync server:rsync --daemon /etc/rsyncd.conf
用法:rsync -rvaq --password-file=/data/secret.txt --delete --exclude "*.pyc" --exclude ".git" username@ip:transcode/test.txt .
注意事項:本機上的/data/secret.txt檔案裡只需要儲存密碼即可,使用者名稱已經在命令中有了,並且許可權應為600。
rsync配置教程
專案由於是集群配置 4臺 負載均衡f5,而且一開始沒有考慮伺服器,所以上傳功能導致不知道上傳到那台伺服器上,只能臨時抱佛腳用rsync做互為同步功能。root hammer home rpm qa grep rsync 檢查系統是否安裝了rsync軟體包 rsync 2.6.8 3.1 root h...
rsync 配置方法
rsync是乙個遠端資料同步工具,可通過lan wan快速同步多台主機間的檔案。它使用所謂的 rsync演演算法 來使本地和遠端兩個主機之間的檔案達到同步,這個演算法只傳送兩個檔案的不同部分,而不是每次都整份傳送,因此速度相當快。所以通常可以作為備份工具來使用。執行rsync server的機器也叫...
rsync 配置詳解
root localhost yum install y rsync root localhost systemctl start rsyncd root localhost systemctl enable rsyncd root localhost vim etc rsyncd.conf 決定了...