1. 程式人生 > >Linux下同步工具sersync+rsync使用詳解【實戰篇】

Linux下同步工具sersync+rsync使用詳解【實戰篇】

<?xml version="1.0" encoding="ISO-8859-1"?>
<head version="2.5">
    <host hostip="localhost" port="8008"></host>   # 設定本地IP和埠
    <debug start="false"/>           # 是否開啟除錯模式,下面所有出現false和true的地方都分別表示關閉和開啟的開關
    <fileSystem xfs="false"/>        # 監控的是否是xfs檔案系統
    <filter start="false">           # 是否啟用監控的篩選功能,篩選的檔案將不被監控,預設關閉
        <exclude expression="(.*)\.svn"></exclude>
        <exclude expression="(.*)\.gz"></exclude>
        <exclude expression="^info/*"></exclude>
        <exclude expression="^static/*"></exclude>
    </filter>
    <inotify>                         # 設定監控的事件,預設監控的是delete/close_write/moved_from/moved_to/create folder
        <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>                           # rsync命令的配置段
        <localpath watch="/data/sp">    # 本地監控同步的目錄或檔案,同inotify+rsync一樣,建議同步目錄
            <remote ip="192.168.66.153" name="sp"/>   # 目標地址和rsync daemon的模組名,所以遠端要以daemon模式先執行好rsync
            <!--remote ip="IPADDR" name="module"-->     # 除非下面開啟了ssh start,此時name為遠端shell方式執行時的目標目錄
        </localpath>
        <rsync>                      # 指定rsync選項
            <commonParams params="-auvrtzopgP"/>
            <auth start="true" users="rsync" passwordfile="/etc/rsync_client.pwd"/>   #rsync同步認證
            <userDefinedPort start="false" port="874"/><!-- port=874 -->  # 設定rsync遠端服務埠,非預設埠需要開啟自定義(若開啟rsync+ssh, 則這裡需定義SSH埠)
            <timeout start="true" time="100"/><!-- timeout=100 -->  # 設定超時時間
            <ssh start="false"/>      # 是否使用遠端shell模式而非rsync daemon執行rsync命令
        </rsync>
        <failLog path="/tmp/rsync_fail_log.sh" timeToExecute="60"/><!--default every 60mins execute once-->   # 錯誤重傳。sersync傳輸失敗日誌指令碼路徑,每隔60會重新執行該指令碼,執行完畢會自動清空。
        <crontab start="false" schedule="600"><!--600mins-->    # 是否開啟crontab功能,預設關閉
            <crontabfilter start="false">       # crontab定時傳輸的篩選功能
                <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>