Rsync+Inotify架构实现实时同步

关于CentOS7版本上面搭建rsync服务并且实现实时同步
之前一直是在6版本上面搭建rsync服务,在7版本上面折腾了半天。此处总结下
inotify下载地址:

环境说明:

centos7版本上面已经默认安装了rsync和xinetd服务

[ root@rh6 ~ ]# rpm -ql rsync           --在6版本上面执行此命令可以看到xinetd服务配置文件下面有rsync的子配置文件

/etc/xinetd.d/rsync

[ root@rh6 ~ ]# ls /etc/xinetd.d/sync

/etc/xinetd.d/rsync

[ root@centos7_3 ~ ]# rpm -ql rsync          --在7版本上面执行此命令却找不到这样的配置文件,ls查看提示没有此文件

[ root@centos7_3 ~ ]# ls /etc/xinetd.d/sync

ls: cannot access /etc/xinetd.d/rsync: No such file or directory

————————————————————————————————————————————————————————

实验环境:两台centos7版本的宿主机

客户端:172.16.27.25

服务端:172.16.27.26

具体步骤:

服务端

[root@cc4 ~]# rpm -aq |grep xinetd
xinetd-2.3.15-13.el7.x86_64
[root@cc4 ~]# rpm -aq |grep rsync
rsync-3.0.9-17.el7.x86_64

[root@cc4 ~]# vim /etc/xinetd.d/rsync   --说明:修改xinetd服务下面的配置文件,将rsync交给xinetd管理。此配置文件在7版本默认上面是没有的,我是直接从6版本复制过来的,也可以手写下面内容
# default: off
# description: The rsync server is a good addition to an ftp server, as it \
#      allows crc checksumming etc.
service rsync
{
        disable              = no      --将原来的yes改为no
        flags                  = IPv6
        socket_type      = stream
        wait                  = no
        user                  = root
        server                = /usr/bin/rsync
        server_args      = --daemon
        log_on_failure  += USERID
}

[root@cc4 ~]# vim /etc/rsyncd.conf      --修改配置文件发布共享目录
[test]
        path = /test                --本地共享目录
        auth user = user1      --指定用户同步
        secrets file = /etc/rsyncd.secrets      --指定保存用户密码文件

[root@cc4 ~]# systemctl restart xinetd    --启动服务

[root@cc4 ~]# vim /etc/rsyncd.secrets    --创建安全用户
user1:123

[root@cc4 ~]# chmod 600 /etc/rsyncd.secrets    --设置安全用户文件的权限,不能被其他人查看

[root@cc4 ~]# mkdir /test     --创建共享目录
[root@cc4 ~]# touch /test/file{1..10}    --此处为了测试,创建几个文件
[root@cc4 ~]# ls /test/
file1  file10  file2  file3  file4  file5  file6  file7  file8  file9

 

客户端测试:

[root@cc3 ~]# rsync -a 172.16.27.26::
test   

[root@cc3 date]# ls
[root@cc3 date]# rsync -av user1@172.16.27.26::test /date
receiving incremental file list
./
file1
file10
file2
file3
file4
file5
file6
file7
file8
file9
sent 219 bytes  received 524 bytes  1486.00 bytes/sec
total size is 0  speedup is 0.00
[root@cc3 date]# ls        --可以看见成功从上面同步过来了。
file1  file10  file2  file3  file4  file5  file6  file7  file8  file9

 

通过inotify+rsync架构实现实时同步

环境说明:要求node1主机上面的/node1目录发生新的创建,删除,移动,以及文件属性信息改变时,自动同不到node2主机的/node2目录

node1主机: IP  172.16.27.25
node2主机: IP  172.16.27.26

具体步骤:

node1端:

[root@cc3 tmp]# ls /tmp/inotify-tools-3.14.tar.gz
/tmp/inotify-tools-3.14.tar.gz

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/eba9993e6cf9a66752b68ad98da6d28d.html