首页 > 代码库 > CentOS 7.2 部署Rsync + Lsyncd服务实现文件实时同步/备份 (一)

CentOS 7.2 部署Rsync + Lsyncd服务实现文件实时同步/备份 (一)

接收端配置:


1.安装rsync

yum -y install rsync

 

2.配置同步模块

  1. 编辑同步配置文件

vi /etc/rsyncd.conf

   2. 同步模块配置参数

# any name you like[backup]# destination directory for copypath = /usr/blues# hosts you allow to accesshosts allow = 192.168.16.143hosts deny = *list = trueuid = rootgid = rootread only = false

   3. 创建同步文件夹

mkdir /usr/blues

  4. 启动同步服务

systemctl start rsyncd

  5. 设置开机启动

systemctl enable rsyncd

 

 

******

CentOS 7.2 部署Rsync + Lsyncd服务实现文件实时同步/备份 (一)