1客户端 192.168.0.153 服务端 115.182.10.144
客户端操作
http://code.google.com/p/sersync/downloads/list sersync 下载地址
tar -zxvf sersync2.5.4_64bit_binary_stable_final.tar.gz -C /usr/bin
cd /usr/bin/GNU-Linux-x86/
[root@wlmachine GNU-Linux-x86]# ls
confxml.xml sersync2
有这两个文件是对的
vim confxml.xml
[root@wlmachine GNU-Linux-x86]# vim 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>
<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="/opt/test">
<remote ip="192.168.1.55" name="test"/>
<!--<remote ip="192.168.8.39" name="tongbu"/>-->
<!--<remote ip="192.168.8.40" name="tongbu"/>-->
</localpath>
<rsync>
<commonParams params="-artuz"/>
<auth start="false" users="root" passwordfile="/etc/rsync.pas"/>
<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>
<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">
加粗部分是更改的部分
更改共享目录
保存退出
检查rsync是否安装 如果没有 yum安装
服务端 也安装rsync
安装完成后 配置主配置文件,如果没有就创建一个
vim /etc/rsyncd.conf
uid=root
gid=root
max connections=36000
use chroot=no
log file=/var/log/rsyncd.log
pid file=/var/run/rsyncd.pid
lock file=/var/run/rsyncd.lock
[test]#此处要和sersync配置目录相同
path=/opt/test#本地同步存放目录
comment = http file
ignore errors = yes
read only = no
其他配置不用改
服务端启动 rsync --daemon
客户端启动 cd /usr/bin/GNU-Linux-x86/
执行如下命令 启动守护进城及第一次同步
[root@wlmachine GNU-Linux-x86]# ./sersync2 -rd
现在可以测试了。。
如果有/var/run/pid 之类的错误 直接rm -fr 删除即可
####如果有防火墙 iptables -A INPUT -p tcp --dport 803 -j ACCEPT