sersync实时同步

Posted Y753

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sersync实时同步相关的知识,希望对你有一定的参考价值。

实时同步目的

  • 1.解决单点故障
  • 2.保证数据的一致性

sersync做实时同步的依赖

  • 1.rsync
  • 2.inotify

Inotify 是一个通知接口,用来监控文件系统的各种变化,如果文件存取,删除,移动。可以非常方便地实现文件
异动告警,增量备份,并针对目录或文件的变化及时作出响应。*rsync+inotify*可以实触发式实时同步增量备份
sersync官网:​​TP​


要求

1.web01和web02可以上传图片
2.nfs用户数据每天凌晨1点做备份
3.校验数据的完整性
4.nfs用户数据实时同步到backup的/data/目录下,做nfs的备机
4.使用sersync实现

sersync实战

环境准备

主机名

Wanip

LanIP

角色

部署服务

web01

10.0.0.7

172.16.1.7

nfs客户端

httpd、php、nfs-utils

web02

10.0.0.8

172.16.1.8

nfs客户端

httpd、php、nfs-utils

nfs

10.0.0.31

172.16.1.31

rsync客户端、nfs服务端

nfs-utils、rsync、inotify-tools、sersync

backup

10.0.0.41

172.16.1.41

rsync客户端、nfs服务端(备机)

nfs-utils、rsync

部署客户端sersync

# 1.安装sersync的依赖 
[root@nfs ~]# yum install -y rsync inotify-tools

# 2.下载sersync到客户端(哪边需要推数据下哪里)
## 国内下载地址
[root@nfs ~]# wget http://test.driverzeng.com/other/sersync2.5.4_64bit_binary_stable_final.tar.gz

# 3.创建安装目录
[root@nfs ~]# mkdir /application

# 4.解压sersync
[root@nfs ~]# tar xf sersync2.5.4_64bit_binary_stable_final.tar.gz -C /application/

# 5.改名
[root@nfs ~]# mv /application/GNU-Linux-x86/ /application/sersync-2.5.4

# 6.修改配置文件
[root@nfs ~]# vim /application/sersync-2.5.4/confxml.xml

inotifywait -mrq --format %w %f -e create,delete,attrib,close_write /data
(下面的其实就是上面的inotify的选项)
## 将下面内容都改成true
<inotify>
<delete start="true"/>
<createFolder start="true"/>
<createFile start="true"/>
<closeWrite start="true"/>
<moveFrom start="true"/>
<moveTo start="true"/>
<attrib start="true"/>
<modify start="true"/>
</inotify>

# rsync -az --delete /data rsync_backup@172.16.1.41::data --password-file=a.pass
##################对照这个脚本修改
<sersync>
<localpath watch="/data "> ## watch="/data "
<remote ip="172.16.1.41" name="data"/> ##ip="172.16.1.41" name="data"
<!--<remote ip="192.168.8.39" name="tongbu"/>--> #(注释,不用看)
<!--<remote ip="192.168.8.40" name="tongbu"/>--> #(注释,不用看)
</localpath>
<rsync>
<commonParams params="-az --delete"/> ## params="-az --delete"
<auth start="true" users="rsync_backup" passwordfile="etc/rsync.pass"/> ## 全改
<userDefinedPort start="false" port="874"/><!-- port=874 -->
<timeout start="false" time="100"/><!-- timeout=100 -->
<ssh start="false"/>
</rsync>
<failLog path="/tmp/rsync_fail_log.sh" timeToExecute="60"/><!--default every 60mins execute once-->
<crontab start="false" schedule="600"><!--600mins-->
<crontabfilter start="false">
<exclude expression="*.php"></exclude>
<exclude expression="info/*"></exclude>
</crontabfilter>
</crontab>
<plugin start="false" name="command"/>
</sersync>
------------------------------------------------------------------------
########################################################################
## <!-- 修改后的配置文件 -->
[root@nfs ~]# cat /application/sersync-2.5.4/confxml.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<head version="2.5">
<host hostip="localhost" port="8008"></host>
<debug start="false"/>
<fileSystem xfs="false"/>
<filter start="false">
<exclude expression="(.*)\\.svn"></exclude>
<exclude expression="(.*)\\.gz"></exclude>
<exclude expression="^info/*"></exclude>
<exclude expression="^static/*"></exclude>
</filter>
##<!-- inotify监控动作配置 全部改成true -->
<inotify>
<delete start="true"/>
<createFolder start="true"/>
<createFile start="true"/>
<closeWrite start="true"/>
<moveFrom start="true"/>
<moveTo start="true"/>
<attrib start="true"/>
<modify start="true"/>
</inotify>

<sersync>
##<!-- 监控目录,推送数据的目录 /data -->
<localpath watch="/data">
###<!-- rsync服务端的IP地址:172.16.1.41 和 模块名:data -->
<remote ip="172.16.1.41" name="data"/>
<!--<remote ip="192.168.8.39" name="tongbu"/>-->
<!--<remote ip="192.168.8.40" name="tongbu"/>-->
</localpath>
<rsync>
###<!-- rsync命令执行时的选项 -->
<commonParams params="-az --delete"/>
###<!-- rsync命令认证,打开认证,rsync匿名用户,密码文件 -->
<auth start="true" users="rsync_backup" passwordfile="/etc/rsync.paswds"/>
<userDefinedPort start="false" port="874"/><!-- port=874 -->
<timeout start="false" time="100"/><!-- sersync实时同步

Rsync + sersync 实时同步备份

实时同步sersync

sersync实时同步

sersync实时同步

rsync+sersync实现文件实时同步