一.服務(wù)端(需要被同步文件的主機(jī))
1. 安裝rsync
yum install -y rsync
2. 配置,新增配置文件/etc/rsyncd.conf
[global]
uid = root
gid = root
use chroot = no
max connections = 10
list = yes
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsyncd.lock
log file = /var/log/rsyncd.log
hosts allow = 192.168.217.130 //白名單,允許同步的機(jī)器IP地址
創(chuàng)新互聯(lián)建站是專業(yè)的文成網(wǎng)站建設(shè)公司,文成接單;提供成都網(wǎng)站建設(shè)、成都網(wǎng)站制作,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行文成網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
[data] //數(shù)據(jù)目錄別名,同步時(shí)需要用到
path = /usr/local/src //別名對應(yīng)的同步目錄
ignore errors
read only = yes
auth users = vicxiang //同步時(shí)用到的用戶名
secrets file = /etc/sery.pass //同步時(shí)用到的賬號密碼配置文件
3. 配置,新增配置文件/etc/sery.pass
vicxiang:123456
修改文件權(quán)限
chmod 600 /etc/sery.pass
4. 啟動rsync服務(wù)
rsync --daemon --config=/etc/rsyncd.conf
5. 防火墻設(shè)置,端口需要開放tcp 873
二.客戶端(文件同步到的目的機(jī)器)
1. 配置密碼文件/etc/sery_client.pass
123456
修改文件權(quán)限
chmod 600 /etc/sery_client.pass
2. 同步命令
rsync -avr -P vicxiang@192.168.217.128::data /usr/local/src/ --password-file=/etc/sery_client.pass
其中vicxiang是同步時(shí)使用的用戶名;
192.168.217.128是服務(wù)端IP;
data是服務(wù)端配置的數(shù)據(jù)目錄別名;
/usr/local/src/是同步到本機(jī)的目錄;
/etc/sery_client.pass是配置密碼文件
三.配合crontab定時(shí)同步
編寫腳本rsync.sh
log_file=rsync.log
function sync(){
ip=${1}
path=${2}
t=date +%Y%m%d-%H%M%S
echo "${t} start to sync data from ${ip}..." >> ${log_file}
rsync -avr -P vicxiang@${ip}::data ${path} --password-file=/etc/sery_client.pass
echo "done" >> ${log_file}
}
sync ip path