共计 1342 个字符,预计需要花费 4 分钟才能阅读完成。
实验需求:在服务器(192.168.100.1)端搭建 rsync 服务,将 /usr/src 目录同步到客户端 /rsync 目录
Linux 系统:CentOS 6.5
推荐阅读:
利用 inotifywait 监控主机文件和目录 http://www.linuxidc.com/Linux/2013-03/81075.htm
利用 inotify+rsync 实现 Linux 文件批量更新 http://www.linuxidc.com/Linux/2012-01/52132.htm
inotify-tools+rsync 实时同步文件安装和配置 http://www.linuxidc.com/Linux/2012-06/63624.htm
rsync 同步完整配置 http://www.linuxidc.com/Linux/2013-06/85781.htm
一. 服务器配置
1. 开启服务
#vim /etc/xinetd.d/rsync
……
disable = no // 把 disable = yes 改成 no
……
或者执行以下命令也能开启服务
# chkconfig rsync on
#service xinetd start
2. 建立 rsync 账号文件
# vim /etc/rsync_users
ruser:123456
# chmod 600 /etc/rsync_users // 修改权限
3. 创建 rsync 主配置文件
# vim /etc/rsyncd.conf // 默认不存在
uid = nobody
gid = nobody
use chroot = yes
pid file = /var/run/rsyncd.pid
log file = /var/log/rsyncd.log
[tools]
path = /usr/src
comment = Rsync share test
auth users = ruser
secrets file = /etc/rsync_user
read only = yes
4. 重启 xinetd 服务
# service xinetd restart
二. 客户端配置
1. 创建测试目录
# mkdir /rsync
2. 同步 rsync 共享目录
# rsync ruser@192.168.100.1::tools // 浏览共享
# vim /root/rsync_pass // 设定密码文件
123456 // 只需写登录用户密码,要与服务器端设置密码一致
# chmod 600 /root/rsync_pass // 不修改权限会报错
# rsync -az –password-file=/root/rsync_pass ruser@192.168.100.1::tools /rsync // 同步
3. 将 rsync 放入 crontab 计划任务, 每天同步一次
#crontab -e
0 5 * * * /usr/bin/rsync -a –password-file=/root/rsync_pass ruser@192.168.100.1::tools /rsync
Rsync 的详细介绍 :请点这里
Rsync 的下载地址 :请点这里
更多 CentOS 相关信息见 CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14