首页 > 系统 > Linux > 正文

Linux下sersync数据实时同步

2024-08-28 00:03:16
字体:
来源:转载
供稿:网友

sersync其实是利用inotify和rsync两种软件技术来实现数据实时同步功能的,inotify是用于监听sersync所在服务器上的文件变化,结合rsync软件来进行数据同步,将数据实时同步给客户端服务器。

工作过程:在同步主服务器上开启sersync,负责监听文件系统的变化,然后调用rsync命令把更新的文件同步到目标服务器上,主服务器上安装sersync软件,目标服务器上安装rsync服务。

1、客户端配置

[root@localhost2 ~]# cat /etc/rsyncd.conf ##created by cai at 2018-2-24uid=rsyncgid=rsyncuse chroot = nomax connections = 200timeout = 300pid file = /var/run/rsyncd.pidlock file = /var/run/rsync.locklog file = /var/log/rsyncd.log[data]path = /data/ignore errorsread only = falselist = falsehosts allow = 192.168.181.128:52000/24hosts deny = 0.0.0.0/32auth users = rsync_bodysecrets file = /etc/rsync.password[root@localhost2 ~]# ls -ld /data/drwxrwxrwx. 3 rsync rsync 4096 Feb 24 16:58 /data/[root@localhost2 ~]# cat /etc/rsync.password rsync_body:admin[root@localhost2 ~]# ls -ld /etc/rsync.password -rw-------. 1 root root 17 Feb 24 16:26 /etc/rsync.password  #600权限[root@localhost2 ~]# netstat -lntup| grep "rsync"tcp 0 0 0.0.0.0:873 0.0.0.0:* LISTEN 1497/rsync tcp 0 0 :::873 :::* LISTEN 1497/rsync

2、主服务器配置

[root@localhost1 ~]# cat /etc/rsync.password admin[root@localhost1 ~]# ls -ld /etc/rsync.password -rw------- 1 root root 6 Feb 24 03:54 /etc/rsync.password

3、安装sersync服务

采用inotify来对文件进行监控,当监控到文件有文件发生改变的时候,就会调用rsync实现触发式实时同步!

安装sersync(注意sersync是工作在rsync的源服务器上,也就是客户端上)

[root@salt-client01 ~]# cd /usr/local/src/[root@salt-client01 src]# tar -zxvf sersync2.5.4_64bit_binary_stable_final.tar.gz -C /usr/local/GNU-Linux-x86/GNU-Linux-x86/sersync2GNU-Linux-x86/confxml.xml[root@salt-client01 src]# cd /usr/local/[root@salt-client01 local]# mv GNU-Linux-x86 sersync[root@salt-client01 local]# cd sersync/[root@salt-client01 sersync]# mkdir conf bin log[root@salt-client01sersync]# mv confxml.xml conf[root@salt-client01sersync]# mv sersync2 bin/sersync

修改配置文件

***********************************30行开始******************************  <commonParams params="-artuz"/> #-artuz为rsync同步时的参数  <authstart="true" users="rsync的虚拟用户名(rsync_backup)" passwordfile="rsync的密码文件"/>  <userDefinedPort start="true"port="873"/><!-- port=874 -->  <timeout start="false" time="100"/><!--timeout=100 -->  <sshstart="false"/>    ************************************第36行***********************************    <failLogpath="自己定义的log文件夹(/usr/local/sersync/log)rsync_fail_log.sh"    timeToExecute="60"/><!--defaultevery 60mins execute once-->    *******************************************************************************    *注:若有多个目录备份可以穿件多个配置文件在启动时的-o参数中添加即可[root@salt-client01 conf]# diff confxml.xml confxml.xml.bak24,25c24,25<   <localpath watch="/data/">  #data就是本地需要同步的文件夹到服务器端的目录<     <remote ip="192.168.91.166" name="data"/> #data (server的模块名)是rsync 服务端的文件夹,也就是推送到服务器端的目标文件夹,可以配置多个,--->   <localpath watch="/opt/tongbu">>     <remote ip="127.0.0.1" name="tongbu1"/>31c31<     <auth start="true" users="rsync_body" passwordfile="/etc/rsync.password"/>  #true 才能生效,rsync_body同步时候虚拟账号,后面是密码文件--->     <auth start="false" users="root" passwordfile="/etc/rsync.pas"/>33c33<     <timeout start="true" time="100"/><!-- timeout=100 -->          #true 才能生效--->     <timeout start="false" time="100"/><!-- timeout=100 -->36c36<   <failLog path="/usr/local/sersync/log/rsync_fail_log.sh" timeToExecute="60"/><!--default every 60mins execute once--> #检测rsync进程判断,没有自动启--->   <failLog path="/tmp/rsync_fail_log.sh" timeToExecute="60"/><!--default evePry 60mins execute once-->
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表