Liunx系統實現文件同步不須要搭建FTP這類的工具,只須要按照Rsync配置下文件就能夠。linux
本文以Centos7.0爲例。vim
1. 首先關閉SELINUX(不關閉沒法同步,權限過高了)centos
vi /etc/selinux/config #編輯防火牆配置文件 #SELINUX=enforcing #註釋掉 #SELINUXTYPE=targeted #註釋掉 SELINUX=disabled #增長 :wq! #保存,退出 setenforce 0 #當即生效
2. 服務端和客戶端同時安裝Rsyncsocket
yum install rsync xinetd #安裝
3. 客戶端和服務端同時新增配置文件(centos7 默認沒有了,得單獨手工建,不然沒法啓動)工具
vim /etc/xinetd.d/rsyncui
service rsync { disable = no flags = IPv6 socket_type = stream wait = no user = root server = /usr/bin/rsync server_args = --daemon log_on_failure += USERID }
4 修改服務端配置給客戶端調用centos7
vim /etc/rsyncd.confspa
log file = /var/log/rsyncd.log #日誌文件位置,啓動rsync後自動產生這個文件,無需提早建立 pidfile = /var/run/rsyncd.pid #pid文件的存放位置 lock file = /var/run/rsync.lock #支持max connections參數的鎖文件 secrets file = /etc/rsync.pass #用戶認證配置文件,裏面保存用戶名稱和密碼,後面會建立這個文件 motd file = /etc/rsyncd.Motd #rsync啓動時歡迎信息頁面文件位置(文件內容自定義) [test] #自定義名稱 path = /data/ #rsync服務端數據目錄路徑 comment =rsync data comment #對那個文件夾進行描述 uid = root #設置rsync運行權限爲root 推薦使用 nobody gid = root #設置rsync運行權限爲root 推薦使用 nobody port=873 #默認端口 use chroot = no #默認爲true,修改成no,增長對目錄文件軟鏈接的備份 read only = no #設置rsync服務端文件爲讀寫權限 list = no #不顯示rsync服務端資源列表 max connections = 200 #最大鏈接數 timeout = 600 #設置超時時間 auth users = test #執行數據同步的用戶名,能夠設置多個,用英文狀態下逗號隔開 hosts allow = 192.168.21.129 #容許進行數據同步的客戶端IP地址,能夠設置多個,用英文狀態下逗號隔開 hosts deny = 192.168.21.254 #禁止數據同步的客戶端IP地址,能夠設置多個,用英文狀態下逗號隔開
5 新增同步用戶的配置文件保存密碼rest
vim /etc/rsync.pass日誌
test:123456
6. 對配置文件進行受權
chmod 600 /etc/rsyncd.conf #設置文件全部者讀取、寫入權限 chmod 600 /etc/rsync.pass #設置文件全部者讀取、寫入權限
7. 重啓Rsync 是用軟件生效
systemctl restart xinetd
8. 客戶端開始同步
首先telnet端口: telnet 172.16.120.18 83 服務端同步文件到客戶端: rsync -avz test@172.16.120.252::ftp /data 客戶端同步文件到服務端 rsync -av /data/ test@172.16.120.252:ftp
其中/data/ 若後面不加"/" 那/data 就是表示自己同步過去,切記!