[root@SERSYNC sersync]# cp conf/confxml.xml conf/confxml.xml.bak.$(date +%F)

[root@SERSYNC sersync]# ls

bin  conf  logs

[root@SERSYNC sersync]# ls conf/

confxml.xml  confxml.xml.bak.2014-06-04

初始化的配置文件内容如下:

[root@SERSYNC sersync]# cat conf/confxml.xml -n

1<?xml version="1.0" encoding="ISO-8859-1"?>

2<head version="2.5">

3    <host hostip="localhost" port="8008"></host>

4    <debug start="false"/>

5    <fileSystem xfs="false"/>

6    <filter start="false">

7<exclude expression="(.*)\.svn"></exclude>

8<exclude expression="(.*)\.gz"></exclude>

9<exclude expression="^info/*"></exclude>

11    </filter>

12    <inotify>

13<delete start="true"/>

14<createFolder start="true"/>

15<createFile start="false"/>

16<closeWrite start="true"/>

17<moveFrom start="true"/>

18<moveTo start="true"/>

19<attrib start="false"/>

20<modify start="false"/>

21    </inotify>

23    <sersync>

24<localpath watch="/opt/tongbu">

25    <remote ip="127.0.0.1" name="tongbu1"/>

26    <!--<remote ip="192.168.8.39"
name="tongbu"/>-->

27    <!--<remote ip="192.168.8.40"
name="tongbu"/>-->

28</localpath>

29<rsync>

30    <commonParams params="-artuz"/>

31    <auth
start="false" users="root" passwordfile="/etc/rsync.pas"/>

32    <userDefinedPort start="false"
port="874"/><!-- port=874 -->

33    <timeout start="false"
time="100"/><!-- timeout=100 -->

34    <ssh start="false"/>

35</rsync>

36<failLog path="/tmp/rsync_fail_log.sh" timeToExecute="60"/><!--default every 60mi ns execute once-->

38    <crontabfilter start="false">

39<exclude expression="*.php"></exclude>

40<exclude expression="info/*"></exclude>

41    </crontabfilter>

42</crontab>

43<plugin start="false" name="command"/>

44    </sersync>

46    <plugin name="command">

47<param prefix="/bin/sh" suffix="" ignoreError="true"/><!--prefix /opt/tongbu/mm

m.sh suffix-->

48<filter start="false">

49    <include expression="(.*)\.php"/>

50    <include expression="(.*)\.sh"/>

51</filter>

52    </plugin>

54    <plugin name="socket">

55<localpath watch="/opt/tongbu">

56    <deshost ip="192.168.138.20"
port="8009"/>

57</localpath>

58    </plugin>

59    <plugin name="refreshCDN">

60<localpath watch="/data0/htdocs/cms.xoyo.com/site/">

61    <cdninfo domainname="ccms.chinacache.com"
port="80" username="xxxx"
pass wd="xxxx"/>

62    <sendurl base="http://pic.xoyo.com/cms"/>

es"/>

64</localpath>

65    </plugin>

66</head>

为了满足我们的需求,我们需要修改如下几处设置:

1 修改 24-28 行的内容,原内容为:

<localpathwatch="/opt/tongbu">        #定义本地要同步的目录

<remoteip="127.0.0.1"
name="tongbu1"/>
 #

<!--<remoteip="192.168.8.39" name="tongbu"/>-->     #同步到哪个机器,,同步到

机器的哪个模块

<!--<remoteip="192.168.8.40" name="tongbu"/>-->

</localpath>

修改后内容为:

<localpathwatch="/data/web">

<remoteip="172.16.100.1" name="web"/>     #这里取掉了两旁的注释

<remoteip="172.16.100.2" name="web"/>     #这里取掉了两旁的注释

</localpath>

该文件中分隔符形式为:<!--###########################-->

2 修改 31-34 行,认证相关部分:

<commonParamsparams="-artuz"/>

<auth start="false"users="root"
passwordfile="/etc/rsync.pas"/>

<userDefinedPortstart="false" port="874"/><!-- port=874 -->

<timeoutstart="false" time="100"/><!-- timeout=100 -->

<sshstart="false"/>

修改后内容为:

<commonParamsparams="-aruz"/>

<userDefinedPortstart="false" port="874"/><!-- port=874 -->

<timeoutstart="true"
time="100"/><!-- timeout=100 -->

<sshstart="false"/>
提示:上面的几个配置就是在拼接

rsync -aruz --timeout=100 /data/web

rsync_bak@172.16.100.1::www/

--password-file=/etc/rsync.password

3)修改 36-37 行

<failLogpath="/tmp/rsync_fail_log.sh"timeToExecute="60"/><!--default every 60mins exe

cute once-->

修改后内容为

<failLog path="/usr/local/sersync/logs/rsync_fail_log.sh "timeToExecute="60"/><!--defau

lt every 60mins execute once-->

当同步失败后,日志记录到/usr/local/sersync/logs/rsync_fail_log.sh,并且每 60 分钟对失败的

log 进行重新同步。

修改后的完整配置文件为:

[root@SERSYNC sersync]# cat -n /usr/local/sersync/conf/confxml.xml

1<?xml version="1.0" encoding="ISO-8859-1"?>

2<head version="2.5">

3    <host hostip="localhost"
port="8008"></host>

4    <debug
start="false"/>

5    <fileSystem xfs="false"/>

6    <filter
start="false">

7<exclude expression="(.*)\.svn"></exclude>

8<exclude expression="(.*)\.gz"></exclude>

10<exclude expression="^static/*"></exclude>

11    </filter>

12    <inotify>

13<delete start="true"/>

14<createFolder start="true"/>

15<createFile start="false"/>

16<closeWrite start="true"/>

17<moveFrom start="true"/>

18<moveTo start="true"/>

19<attrib start="false"/>

20<modify start="false"/>

21    </inotify>

23    <sersync>

24<localpath watch="/data/web">

25    <remote ip="172.16.100.1" name="web"/>

26    <remote ip="172.16.100.2" name="web"/>

27</localpath>

28<rsync>

29    <commonParams params="-aruz"/>

30    <auth
start="true"
users="rsync_bak" passwordfile="/etc/rsync.password"/>

31    <userDefinedPort start="false"
port="874"/><!-- port=874 -->

32    <timeout start="true" time="100"/><!-- timeout=100 -->

33    <ssh start="false"/>

34</rsync>

35<failLog path="/usr/local/logs/rsync_fail_log.sh" timeToExecute="60"/><!--default e very 60mins execute once-->

37    <crontabfilter start="false">

38<exclude expression="*.php"></exclude>

39<exclude expression="info/*"></exclude>

40    </crontabfilter>

41</crontab>

42<plugin start="false" name="command"/>

43    </sersync>

45    <plugin name="command">

46<param prefix="/bin/sh" suffix="" ignoreError="true"/><!--prefix /opt/tongbu/mm

m.sh suffix-->

47<filter start="false">

48    <include expression="(.*)\.php"/>

49    <include expression="(.*)\.sh"/>

50</filter>

51    </plugin>

53    <plugin name="socket">

54<localpath watch="/opt/tongbu">

55    <deshost ip="192.168.138.20"
port="8009"/>

56</localpath>

57    </plugin>

58    <plugin name="refreshCDN">

59<localpath watch="/data0/htdocs/cms.xoyo.com/site/">

60    <cdninfo domainname="ccms.chinacache.com"
port="80" username="xxxx"
pass wd="xxxx"/>

61    <sendurl base="http://pic.xoyo.com/cms"/>

es"/>

63</localpath>

64    </plugin>

65</head>

以上的配置文件,我们仅仅配置了针对 SWEB1 和 SWEB2 上 web 这个模块,即/data/web

目录的自动同步。由于我们还有一个 download 模块,即/data/download 目录需要进行自动

同步。因此这就意味着,我们需要配置多实例了。

Sersync 的多实例和往常的 apache,nginx 一样,你只需要把配置文件拷贝一份出来,然后针

对不同的实例做不同的修改,然后在最后开启 sersync 服务的时候指定不同的配置文件做启动

即可!

配置针对 download 的实例配置文件:

[root@SERSYNC sersync]# cp /usr/local/sersync/conf/confxml.xml /usr/local/sersync/con

1

f/download_confxml.xml

修改方法如上,这里仅贴出和上个实例之间不一样的地方:

23    <sersync>

24<localpath watch="/data/download">

25    <remote ip="172.16.100.1" name="download"/>

26    <remote ip="172.16.100.2" name="download"/>

27</localpath>

28<rsync>

linux 配置 Sersync的更多相关文章

  1. (转)Linux系统sersync数据实时同步

    Linux系统sersync数据实时同步 原文:http://blog.csdn.net/mingongge/article/details/52985259 前面介绍了以守护进程的方式传输或同步数据 ...

  2. linux配置网卡IP地址命令详细介绍及一些常用网络配置命令

    linux配置网卡IP地址命令详细介绍及一些常用网络配置命令2010-- 个评论 收藏 我要投稿 Linux命令行下配置IP地址不像图形界面下那么方 便,完全需要我们手动配置,下面就给大家介绍几种配置 ...

  3. linux配置java环境变量(详细)

    linux配置java环境变量(详细) 本文完全引用自: http://www.cnblogs.com/samcn/archive/2011/03/16/1986248.html 一. 解压安装jdk ...

  4. linux配置hosts

    linux配置hosts linux下配置hosts和windows下其实就是一样的,找到文件在哪里就好 sudo vim /etc/hosts

  5. linux配置java环境变量

    linux配置java环境变量(详细) 一. 解压安装jdk 在shell终端下进入jdk-6u14-linux-i586.bin文件所在目录, 执行命令 ./jdk-6u14-linux-i586. ...

  6. Linux 配置本地yum源

    Linux 配置无网络状态利用yum安装软件 在有网络的情况下安装软件只需一条yum install xxx命令,例如安装gcc只需一条指令:yum install gcc  那么在没有网络的情况下该 ...

  7. Linux配置支持高并发TCP连接(socket最大连接数)

    Linux配置支持高并发TCP连接(socket最大连接数) Linux配置支持高并发TCP连接(socket最大连接数)及优化内核参数 2011-08-09 15:20:58|  分类:LNMP&a ...

  8. Linux配置完iptables后,重启失效的解决方案

    Linux配置完iptables后,重启失效的解决方案 因为只有root用户才可访问1024以下的端口,非root用户登陆是不能启用80端口的.web service 往往启动1024以上的端口,并通 ...

  9. linux配置java环境变量(转)

    linux配置java环境变量(详细) 一. 解压安装jdk 在shell终端下进入jdk-6u14-linux-i586.bin文件所在目录, 执行命令 ./jdk-6u14-linux-i586. ...

随机推荐

  1. .net api 和java平台对接技术总结

    这两天 一直和京东对接接口,我们用.net api 提供接口,对方用java调用,本来没什么问题,但是对方对数据安全要求特别严,要验签,于是噩梦开始了. 1.在传输的时候,约定传输格式: HttpWe ...

  2. http协议的深刻理解

    https://www.cnblogs.com/mayite/p/9095986.html

  3. vue中移动端自适应方案

    安装 lib-flexible 1.npm i lib-flexible 2.在项目入口文件 main.js 里 引入 lib-flexible import ‘lib-flexible’ 3.添加m ...

  4. 关于openGL、GPUImage、ios直播相关不错的博客

    http://www.jianshu.com/users/815d10a4bdce/latest_articles

  5. 20160419—JS备忘:服务器回发刷新页面提示重试的解决方案。

    有事页面刷新时 提示如下: js使用的是:location.reload()的刷新方式. 使用js重新定向该页面:location.href="a.aspx"; 当使用:self. ...

  6. Powershell指令集_1

    目录 目录 前言 程序进度条 Write-Progress 执行表达式 Invoke-Expression 表格化打印信息 Format-Table 获取系统服务 Get-WmiObject 循环 F ...

  7. Postman + Newman 生成测试报告

    1.安装Node.js 下载地址: https://nodejs.org/download/ 2.安装Newman 1) 打开cmd,输入:npm install -g newman 2) 安装支持N ...

  8. MVC 源码系列之路由(一)

    路由系统 注释:这部分的源码是通过Refector查看UrlRoutingModule的源码编写,这部分的代码没有写到MVC中,却是MVC的入口. 简单的说一下激活路由之前的一些操作.一开始是由MVC ...

  9. fastdfs集群安装过程_学习笔记

    最终效果 初始化为6个节点 在/usr/local/software 目录下上传需要用到tar包,分别在各个节点上传 使用scp 将本地software目录复制到其他节点上 73.74为 tracke ...

  10. IQueryable在LINQ中

    IQueryable接口定义如下: // 摘要: // 提供对未指定数据类型的特定数据源的查询进行计算的功能. public interface IQueryable : IEnumerable { ...