共计 2182 个字符,预计需要花费 6 分钟才能阅读完成。
一、介绍
在工作中经常遇到代码分发,或者是资料备份,都会用到 rsync,配置不算复杂,仅做下记录,安装环境如下:
1) CentOS6.6
2) rsync-3.0.6-12.el6.x86_64
3) Server IP: 192.168.19.128; Client IP: 192.168.19.145
二、安装
$ yum install -y rsync xinetd
$ setenforce 0 或者 echo “SELINUX=disabled” >/etc/selinux/config (需要重启才能生效)
二、配置
$ vi /etc/rsyncd.conf
uid=root #以指定的 UID 传输文件
gid=root #以指定的 GID 传输文件
#hosts allow=10.50.53.100 #允许指定主机访问
#hosts deny=0.0.0.0/32 #阻止指定主机访问
use chroot=yes
max connections=10 #允许的最大连接数
pid file=/var/run/rsyncd.pid #指定 pid 文件路径
lock file=/var/run/rsync.lock #指定进程锁文件
log file=/var/log/rsyncd.log #指定日志路径
timeout=600 #连接超时时间
port=873 #指定 tcp 端口
[backup]
path=/data
comment=rsync files
read only=no
list=yes
auth users=chicken00
secrets file=/etc/.rsyncd.secrets
# 设置用户和密码,用户跟配置文件指定相同(auth users)
$ echo “chicken00:chicken00” >/etc/.rsyncd.secrets
# 必须设定文件的权限 600
$ chmod 600 /etc/.rsyncd.secrets
三、启动
# 设为开机启动
$ chkconfig rsync on
# 查看开机启动
$ chkconfig –list rsync
rsync on
#rsync 守护进程管理工具 xinetd 配置中的内容
$ cat /etc/xinetd.d/rsync
# default: off
# description: The rsync server is a good addition to an ftp server, as it \
# allows crc checksumming etc.
service rsync
{
disable = no
flags = IPv6
socket_type = stream
wait = no
user = root
server = /usr/bin/rsync
server_args = –daemon
log_on_failure += USERID
}
# 启动服务
$ /etc/init.d/xinetd start
四、检查
# 开启防火墙
五、客户端同步测试
$ echo “chicken00” >/etc/.rsyncd.secrets
$ chmod 600 /etc/.rsyncd.secrets
$ echo ‘hello rsync!!’ >hello.txt
# 上传文件
$ rsync -vzrtopg –delete –progress hello.txt chicken00@192.168.19.128::backup –password-file=/etc/.rsyncd.secrets
# 在服务端看看文件是否同步过来了
# 下载
$ rsync -vzrtopg –delete –progress chicken00@192.168.19.128::backup $(pwd)/backup-$(date +%Y-%m-%d) –password-file=/etc/.rsyncd.secrets
RSync 实现文件备份同步详解 http://www.linuxidc.com/Linux/2014-09/106967.htm
利用 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
CentOS 6.5 下 Rsync 远程同步 http://www.linuxidc.com/Linux/2014-05/101084.htm
Rsync 的详细介绍 :请点这里
Rsync 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-06/119368.htm