最新消息: 新版网站上线了!!!

linux rsync同步的使用方法

rsync -vzrtopg /var/www/html/phpinfo.php   benben@121.40.148.40::benben --password-file=/etc/rsync.pas 
 
yum install rsync xinetd -y
 
配置rsync client  
1、设定密码 
#vi /etc/rsync.pas 
111111 
修改权限 
#cd /etc 
#chown root.root rsync.pas  
#chmod 600 rsync.pas
 
service xinetd restart
/etc/rc.d/init.d/xinetd reload
 /usr/bin/rsync --daemon --config=/etc/rsyncd/rsyncd.conf 

参考地址
http://sookk8.blog.51cto.com/455855/328076/

转载请注明:谷谷点程序 » linux rsync同步的使用方法