CentOS6.8使用Rsync+Inotify-tools实现数据实时同步

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS6.8使用Rsync+Inotify-tools实现数据实时同步相关的知识,希望对你有一定的参考价值。


说明:

        操作系统:CentOS release 6.8 (Final) x86_64

        服务器IP:rsync_server(数据源) 10.15.43.100

                         rsync_client  (目标端)10.15.43.228

       同步目录: rsync_server       /app/rsync_server

                         rsync_client        /app/rsync_client  


rsync_client  (目标端)10.15.43.228

1、安装Rsync服务端

[[email protected] src]# yum -y install rsync xinetd
[[email protected] src]# cp /etc/xinetd.d/rsync{,default}
[[email protected] src]# vim /etc/xinetd.d/rsync
service rsync
{
        disable = no            #修改为no
        flags           = IPv6
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/bin/rsync
        server_args     = --daemon
        log_on_failure  += USERID
}
[[email protected] src]# /etc/init.d/xinetd start        #CentOS中是以xinetd来管理Rsync服务的
[[email protected] src]# vim /etc/rsyncd.conf    #创建配置文件
logfile = /var/log/rsyncd.log    #日志文件位置,启动rsync后自动产生这个文件,无需提前创建
pidfile = /var/run/rsyncd.pid    #pid文件的存放位置
lockfile = /var/run/rsync.lock    #支持max connections参数的锁文件
secretsfile = /etc/rsync.pass    #用户认证配置文件,里面保存用户名称和密码,后面会创建这个文件
motdfile = /etc/rsyncd.Motd    #rsync启动时欢迎信息页面文件位置(文件内容自定义)
[app_rsync_client]    #自定义名称
path = /app/rsync_client/    #rsync服务端数据目录路径
comment = app_rsync_client    #模块名称与[app_rsync_client]自定义名称相同
uid = root    #设置rsync运行权限为root
gid = root    #设置rsync运行权限为root
port =873
use chroot = no    #默认为true,修改为no,增加对目录文件软连接的备份
read only = no    设置rsync服务端文件为读写权限
list = no    #不显示rsync服务端资源列表
mac connections = 200
timeout = 600
auth users = rsync    #执行数据同步的用户名,可以设置多个,用英文状态下逗号隔开
hosts all = 10.15.43.100    #允许进行数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开
hosts deny = 10.10.2.84    #禁止数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开

[[email protected] src]# vim /etc/rsync.pass    #配置文件,添加以下内容
rsync:123456    #格式,用户名:密码,可以设置多个,每行一个用户名:密码
[[email protected] src]# chmod 600 /etc/rsyncd.conf 
[[email protected] src]# chmod 600 /etc/rsync.pass 
[[email protected] src]# /etc/init.d/xinetd restart



rsync_server(数据源) 10.15.43.100

安装Rsync客户端

[[email protected] rsync_server]# whereis rsync    #查看系统是否已安装rsync
rsync: /usr/bin/rsync /usr/share/man/man1/rsync.1.gz    #说明已经安装
[[email protected] rsync_server]#

yum install  xinetd  #已安装rsync只安装xinetd即可,CentOS中是以xinetd来管理rsync服务的

yum install rsync xinetd #如果默认没有rsync,运行此命令进行安装rsync和xinetd

[[email protected] rsync_server]# vim /etc/xinetd.d/rsync
service rsync
{
        disable = no    #修改为no
        flags           = IPv6
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/bin/rsync
        server_args     = --daemon
        log_on_failure  += USERID
}
[[email protected] rsync_server]# /etc/init.d/xinetd restart
[[email protected] rsync_server]# vim /etc/passwd.txt
123456
[[email protected] rsync_server]# chmod 600 /etc/passwd.txt



测试

在rsync_server的/app/rsync_server目录下创建文件file,在rsync_server端运行同步命令同步数据:

rsync -avH --port=873 --progress --delete  /app/rsync_client/ [email protected]::app_rsync_client --password-file=/etc/passwd.txt


rsync_server(数据源) 10.15.43.100

[[email protected] src]# mkdir /app/rsync_client/test
[[email protected] src]# touch /app/rsync_client/test/file
[[email protected] rsync_server]# rsync -avH --port=873 --progress --delete  /app/rsync_server/ [email protected]::app_rsync_client --password-file=/etc/passwd.txt

sending incremental file list
./
file
           0 100%    0.00kB/s    0:00:00 (xfer#1, to-check=0/2)

sent 81 bytes  received 30 bytes  222.00 bytes/sec
total size is 0  speedup is 0.00
[[email protected] rsync_server]#

/app/rsync_server/            数据源的目录

-password-file=/etc/passwd.txt            数据源的密码文件

[email protected]::app_rsync_client        rsync目标端rsync服务端配置的用户名,app_rsync_client目标端rsync服务端配置的模块名称


rsync_client

[[email protected] rsync_client]# ls
file
[[email protected] rsync_client]#


在rsync_server(数据源) 10.15.43.100上安装Inotify-tools工具,实时触发rsync进行同步

[[email protected] src]# ll /proc/sys/fs/inotify    #查看服务器内核是否支持inotify,出现下面的内容,说明服务器内核支持inotify
total 0
-rw-r--r-- 1 root root 0 Jul 27 10:32 max_queued_events
-rw-r--r-- 1 root root 0 Jul 27 10:32 max_user_instances
-rw-r--r-- 1 root root 0 Jul 27 10:32 max_user_watches
[[email protected] src]# uname -r        #Linux下支持inotify的内核最小为2.6.13
2.6.32-642.el6.x86_64
[[email protected] src]# tar zxvf inotify-tools-3.14.tar.gz
[[email protected] src]# cd inotify-tools-3.14
[[email protected] inotify-tools-3.14]# ./configure --prefix=/app/inotify
[[email protected] inotify-tools-3.14]# make && make install
[[email protected] inotify-tools-3.14]# vim /etc/profile    #设置系统环境变量
export PATH=/app/inotify/bin:$PATH
[[email protected] inotify-tools-3.14]# source /etc/profile
[[email protected] inotify-tools-3.14]# echo " /app/inotify/lib" > /etc/ld.so.conf.d/inotify.conf
[[email protected] inotify-tools-3.14]# ln -s /app/inotify/include /usr/include/inotify



















本文出自 “我本不是菜鸟” 博客,请务必保留此出处http://ityunwei2017.blog.51cto.com/7662323/1951362

以上是关于CentOS6.8使用Rsync+Inotify-tools实现数据实时同步的主要内容,如果未能解决你的问题,请参考以下文章

rsync+inotify实时同步

rsync下行同步rsync+inotify实时同步(同步如饮水一样简单)

Rsync下行同步+inotify实时同步介绍和部署

rsync+inotify实时备份

rsync+inotify文件同步

rsync与inotify实现数据实时同步