rsync for linux
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-03-29
上存在的用户;
secrets file = /etc/rsyncd/rsyncd.secrets
ignore errors
5、 启动rsync服务器
/usr/bin/rsync --daemon --config=/etc/rsyncd/rsyncd.conf
6、 列出rsync 服务器上的所提供的同步内容
rsync --list-only linuxsir@linuxsir.org::
7、 rsync 客户端同步数据
重点配置文件:
# Minimal configuration file for rsync daemon
# See rsync(1) and rsyncd.conf(5) man pages for help
# Minimal configuration file for rsync daemon
# See rsync(1) and rsyncd.conf(5) man pages for help
# This line is required by the /etc/init.d/rsyncd script
pid file = /var/run/rsyncd.pid
port = 873
address = 192.168.3.24
#uid = nobody
#gid = nobody
uid = root
gid = root
use chroot = yes
read only = yes
#limit access to private LANs
hosts allow=*
hosts deny=*
max connections = 5
motd file = /etc/rsyncd/rsyncd.motd
#This will give you a separate log file
#log file = /var/log/rsync.log
#This will log every file transferred - up to 85,000 per user, per sync
#transfer logging = yes
log format = %t %a %m %f %b
syslog facility = local3
timeout = 300
[test]
path = /backup
list=yes
ignore errors
auth users = root
secrets file = /etc/rsyncd/rsyncd.secrets
自动执行
*/5 * * * * zhixingmingling 本文出自 “jason” 博客,请务必保留此出处http://jason1110.blog.51cto.com/3924620/713947 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Linux下的的进程查看命令下一篇: 总结WEB服务器搭建(一)
关于rsync for linux的所有评论