rsync+sersync文件同步部署
文件同步
两台机器都安装
一、安装rsync
yum install -y rsync
二、创建秘钥
vim /etc/rsyncd.passwd
内容格式
用户:密码
修改一下文件权限
chmod 600 /etc/rsyncd.passwd
三、修改rsync配置文件
vim /etc/rsyncd.conf
uid = root #启动用户。。。。。部署的时候注释要删掉,否则不好使
gid = root
use chroot = no #这个是no
max connections = 4 #连接数,= 0是不限制
strict modes =yes
port = 873 #端口号873,记得防火墙打开873端口
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsyncd.lock
log file = /var/log/rsyncd.log
log format = %t %a %m %f %b
syslog facility = local3
hosts allow = 192.168.52.241 #写的是另一台机器ip, 两台机器配置,就这不一样
transfer logging = yes
timeout = 900
[yyyyy] #模块名称
path = /home/eqics/yyyyy/ #需要同步的文件路径,注意后面的/
comment = "ceshi"
ignore errors
read only = false #必须false
list = false
secrets file = /etc/rsyncd.passwd #这是密码文件
四、启动rsync
/usr/bin/rsync --daemon
五、测试是否可用
在/home/eqics/yyyyy/目录下新建文件,看是否另一台机器也会建、
/usr/bin/rsync -vzrtopg --progress --delete /home/eqics/yyyyy/ root@192.168.52.241::wu --password-file=/etc/rsyncd.passwd
目录在ip前面。代表从本机推送到对机。
目录在ip后面。代表从对机复制到本机。
六、自动同步sersync
下载地址
https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/sersync/sersync2.5.4_64bit_binary_stable_final.tar.gz
解压
tar -zxvf sersync2.5.4_64bit_binary_stable_final.tar.gz
解压后只有两个文件,confxml.xml 是配置文件,sersync2是启动文件
confxml.xml sersync2
同步多个目录,需要多个confxml.xml
七、sersync配置文件
<?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>
<delete start="true"/>
<createFolder start="true"/>
<createFile start="false"/>
<closeWrite start="true"/>
<moveFrom start="true"/>
<moveTo start="true"/>
<attrib start="false"/>
<modify start="false"/>
</inotify>
#上面部分不要动,只改下面这个
<sersync>
<localpath watch="/home/eqics/yyyyy/"> #同步的路径。注意后面的/
<remote ip="192.168.52.241" name="wu"/> #对端ip,和模块名
<!--<remote ip="192.168.8.39" name="tongbu"/>-->
<!--<remote ip="192.168.8.40" name="tongbu"/>-->
</localpath>
<rsync>
<commonParams params="-vzrtopg"/> #参数有改动
<auth start="true" users="root" passwordfile="/etc/rsyncd.passwd"/> #改为true,用户,和密码文件
<userDefinedPort start="false" port="873"/><!-- port=874 -->
<timeout start="true" time="100"/><!-- timeout=100 --> #改为true,超时时间100s
<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>
<plugin name="command">
<param prefix="/bin/sh" suffix="" ignoreError="true"/> <!--prefix /opt/tongbu/mmm.sh suffix-->
<filter start="false">
<include expression="(.*)\.php"/>
<include expression="(.*)\.sh"/>
</filter>
</plugin>
<plugin name="socket">
<localpath watch="/opt/tongbu">
<deshost ip="192.168.138.20" port="8009"/>
</localpath>
</plugin>
<plugin name="refreshCDN">
<localpath watch="/data0/htdocs/cms.xoyo.com/site/">
<cdninfo domainname="ccms.chinacache.com" port="80" username="xxxx" passwd="xxxx"/>
<sendurl base="http://pic.xoyo.com/cms"/>
<regexurl regex="false" match="cms.xoyo.com/site([/a-zA-Z0-9]*).xoyo.com/images"/>
</localpath>
</plugin>
</head>
八、启动sersync
./sersync2 -d -r -o ./confxml.xml #多个目录,启动多个配置文件
九、测试
在目录中创建或者删除,看是否同步
---------是故无冥冥之志者----------
---------无昭昭之明----------
---------无惛惛之事者----------
---------无赫赫之功----------
本文来自博客园,作者:|是吴啊|,转载请注明原文链接:https://www.cnblogs.com/wuguofeng/p/15324418.html