部署rsync伺服器需要建立至少 乙個配置檔案,預設在系統中並不存在rsync配置檔案,對於伺服器而言,配置檔案建立完成後,使用守護程序模式啟動rsync程式即可。
使用centos 系統安裝 部署rsync
下面的案例演示了如何共享以/common目錄
# yum -y install rsync# mkdir /common; cp /etc/init.d* /common/# vim /etc/rsync.conf
motd file=/etc/rsyncd.motdtransfer logging = yes
log file = /var/log/rsyncd.log
pid file=/var/run/rsyncd.pid
lock file=/var/run/rsync.lock
port = 873
address=192.168.188.80
uid=root
gid=root
use chroot = no
read only = yes
max connections=10
[common]
comment=web content
path=/common
ignore errors
auth users=tom,jerry
secrets file= /etc/rsyncd.secrets
hosts allow=192.168.0.0/255.255.255.0
hosts deny=*
list=false
客戶端同步資料
rsync -vzrtopg --progress [email protected]::common /test
rsync 伺服器搭建
首先不搭建rsync伺服器的話rsync本地同步也可以用。linux一般都自帶了rsync,如果沒有可以安裝。1.準備環境 192.168.21.25 rsync伺服器,要將本地 同步到該機器上 192.168.21.26 本地伺服器。2.在192.168.21.25上安裝 配置rsync伺服器 1...
rsync服務搭建
ip 192.168.1.129 ip 192.168.1.252 root localhost yum y install rsync 修改配置檔案 root localhost vim etc rsyncd.conf 新增以下內容 自定義歡迎語 啟動服務關閉防火牆 root localhost ...
rsync 伺服器架設方法
4 架設rsync伺服器的示例說明 5 啟動rsync 伺服器及防火牆的設定 6 通過rsync客戶端來同步資料 7 問題處理 8 未盡事宜 9 關於本文 10 更新日誌 11 參考文件 12 相關文件 正文 1 什麼是rsync 2 rsync 伺服器的理由 3 架設rsync伺服器過程 3.1 ...