sersync和rsync數據實時同步配置

有Linux系統sersync數據實時同步.txt是完整文件,本文檔可不看
服務器
從 129
主 244
配置主服務器(源)
sersync下載地址
https://code.google.com/archive/p/sersync/downloads
http://sersync.sourceforge.net/
解壓:
tar -zxvf sersync2.5.4_64bit_binary_stable_final.tar.gz php

安裝與配置sersync和rsync(從)
在Ubuntu server上,rsync和inotify默認都是安裝了的。配置以xinetd方式運行。

安裝
tqhy@tqhy-train1:/etc$ sudo apt-get install rsync xinetdhtml

配置
一、修改rsync啓動方式,啓動rsync做爲使用xinetd的守護進程
sudo vi /etc/default/rsync
修改下面這行
RSYNC_ENABLE=inetd git

二、建立 /etc/xinetd.d/rsync 經過xinetd使rsync開始工做
tqhy@tqhy-train1:/etc/xinetd.d$ sudo vi rsyncgithub

service rsync
    {
        disable         = no
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/bin/rsync
        server_args     = --daemon
        log_on_failure  += USERID
    }


三、建立/etc/rsyncd.secrets,配置用戶名和密碼
tqhy@tqhy-train1:~/backup$ sudo vi /etc/rsyncd.secrets
# 配置用戶名和密碼,密碼能夠任意設置
tqhy:tqhy817正則表達式

四、修改rsyncd.secrets文件的權限
sudo chmod 600 /etc/rsyncd.secretsexpress

五、建立 /etc/rsyncd.conf 配置rsync使其在.
$ sudo vi /etc/rsyncd.conf服務器

max connections = 2
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/rsync.log
timeout = 300dom

[backup] # 模塊名
comment = Public Share
# path爲須要同步的文件夾路徑
path = /home/tqhy/backup
read only = no
list = yes
uid = root
gid = rootssh

# 必須和 rsyncd.secrets中的用戶名對應
auth users = tqhy
secrets file = /etc/rsyncd.secrets

用戶組最好設置爲root,否則文件權限同步過去的時候會變化。

六、啓動/重啓 xinetd
tqhy@tqhy-train1:~/backup$ sudo /etc/init.d/xinetd restart
[ ok ] Restarting xinetd (via systemctl): xinetd.service.socket

查看rsyncserver是否啓動
tqhy@tqhy-train1:~/backup$ sudo netstat -ntpl|grep 873
tcp 0 0 0.0.0.0:873 0.0.0.0:* LISTEN 18894/xinetd

測試,在244上執行
tqhy@tqhy-test:~/backup244$ rsync tqhy@192.168.1.250::backup
Password:
drwxrwxr-x 4,096 2018/08/07 10:28:02 .


244服務器
下載sersync
wget --no-check-certificate https://raw.githubusercontent.com/orangle/sersync/master/release/sersync2.5.4_64bit_binary_stable_final.tar.gz

tqhy@tqhy-test:~$ sudo mkdir /usr/local/sersync

tqhy@tqhy-test:~$ sudo tar -xzvf sersync2.5.4_64bit_binary_stable_final.tar.gz -C /usr/local/sersync
GNU-Linux-x86/
GNU-Linux-x86/sersync2
GNU-Linux-x86/confxml.xml

配置sersync

tqhy@tqhy-test:/usr/local/sersync/GNU-Linux-x86$ sudo vi confxml.xml 
<filter start="false">                                                               #關閉文件過濾監控
<inotify>                                                                            #監控參數
    <modify start="true"/>                                                           #容許修改監控 
</inotify>                      
<sersync>                                                                            #監控參數
     <localpath watch="/home/tqhy/backup244/">                                                  #監控目錄
           <remote ip="192.168.1.250" name="backup"/>                             #同步到遠程主機的rsync 塊 psn_html下
     </localpath>
    <rsync>                                                                          #rsync參數
      <commonParams params="-auvPz"/>
      <auth start="true" users="tqhy" passwordfile="/etc/rsyncd.secrets"/>                #用戶名密碼
      <timeout start="false" time="300"/>                                            #超時設置
    </rsync>
    <failLog path="/tmp/rsync_fail_log.sh" timeToExecute="30"/>                      #同步失敗日誌腳本(30分鐘後會從新同步) 
</sersync>


建立/etc/rsyncd.secrets,配置用戶名和密碼
tqhy@tqhy-train1:~/backup$ sudo vi /etc/rsyncd.secrets
# 配置用戶名和密碼,密碼能夠任意設置
tqhy:tqhy817

修改rsyncd.secrets文件的權限
sudo chmod 600 /etc/rsyncd.secrets

啓動sersync
tqhy@tqhy-test:/usr/local/sersync/GNU-Linux-x86$ sudo /usr/local/sersync/GNU-Linux-x86/sersync2 -o ./confxml.xml -n 20 -d
set the system param
execute:echo 50000000 > /proc/sys/fs/inotify/max_user_watches
execute:echo 327679 > /proc/sys/fs/inotify/max_queued_events
parse the command param
option: -o config xml name: ./confxml.xml
option: -n thread num is: 20
option: -d run as a daemon
parse xml config file
host ip : localhost host port: 8008
daemon start,sersync run behind the console
use rsync password-file :
user is tqhy
passwordfile is /etc/rsyncd.secrets
config xml parse success
please set /etc/rsyncd.conf max connections=0 Manually
sersync working thread 22 = 1(primary thread) + 1(fail retry thread) + 20(daemon sub threads)
Max threads numbers is: 42 = 22(Thread pool nums) + 20(Sub threads)
please according your cpu ,use -n param to adjust the cpu rate
run the sersync:
watch path is: /home/tqhy/backup244
tqhy@tqhy-test:/usr/local/sersync/GNU-Linux-x86$

tqhy@tqhy-test:/usr/local/sersync/GNU-Linux-x86$ sudo /usr/local/sersync/GNU-Linux-x86/sersync2 -r -d -o confxml.xml
set the system param
execute:echo 50000000 > /proc/sys/fs/inotify/max_user_watches
execute:echo 327679 > /proc/sys/fs/inotify/max_queued_events
parse the command param
option: -r rsync all the local files to the remote servers before the sersync work
option: -d run as a daemon
option: -o config xml name: confxml.xml
daemon thread num: 10
parse xml config file
host ip : localhost host port: 8008
daemon start,sersync run behind the console
use rsync password-file :
user is tqhy
passwordfile is /etc/rsyncd.secrets
config xml parse success
please set /etc/rsyncd.conf max connections=0 Manually
sersync working thread 12 = 1(primary thread) + 1(fail retry thread) + 10(daemon sub threads)
Max threads numbers is: 22 = 12(Thread pool nums) + 10(Sub threads)
please according your cpu ,use -n param to adjust the cpu rate
------------------------------------------
rsync the directory recursivly to the remote servers once
working please wait...
execute command: cd /home/tqhy/backup244 && rsync -auvPz -R --delete ./ tqhy@192.168.1.250::backup --password-file=/etc/rsyncd.secrets >/dev/null 2>&1
tqhy@tqhy-test:/usr/local/sersync/GNU-Linux-x86$ run the sersync:
watch path is: /home/tqhy/backup244
tqhy@tqhy-test:/usr/local/sersync/GNU-Linux-x86$

http://blog.51cto.com/joeyang/1541922

<?xml version="1.0" encoding="ISO-8859-1"?>
<head version="2.5">
 <!--##設置hostip和port,這個是針對插件保留的字段,對同步功能沒有任何做用,默認便可-->
    <host hostip="localhost" port="8008"></host>
<!--##debug模式 默認:關閉,開啓debug模式,會在sersync正在運行的控制檯,打印inotify事件與rsync同步命令-->
    <debug start="false"/>
<!--##文件系統xfs 默認:關閉-->
    <fileSystem xfs="false"/>
<!--##同步時忽略推送的文件即文件過濾功能(正則表達式),默認:關閉-->
    <filter start="false">
        <exclude expression="(.*)\.svn"></exclude>
        <exclude expression="(.*)\.gz"></exclude>
        <exclude expression="^info/*"></exclude>
        <exclude expression="^static/*"></exclude>
    </filter>
<!--##設置監控事件參數-->
<!--對於大多數應用,能夠嘗試把createFile(監控文件事件選項)設置爲false來提升性能,減小 rsync通信。由於拷貝文件到監控目錄會產生create事件與close_write事件,因此若是關閉create事件,只監控文件拷貝結束時的事 件close_write,一樣能夠實現文件完整同步。
注意:必須將createFolder保持爲true,若是將createFolder設爲false,則不會對產生的目錄進行監控,該目錄下的子文件與子目錄也不會被監控。因此除非特殊須要,請開啓。默認狀況下對建立文件(目錄)事件與刪除文件(目錄)事件都進行監控,若是項目中不須要刪除遠程目標服務器的文件(目錄),則能夠將delete 參數設置爲false,則不對刪除事件進行監控-->
    <inotify>
        <delete start="true"/>
        <createFolder start="true"/>
        <createFile start="false"/>
        <closeWrite start="true"/>
        <moveFrom start="true"/>
        <moveTo start="true"/>
        <attrib start="true"/>
        <modify start="true"/>
    </inotify>
    <sersync>
<!--##設置本地的同步路徑-->
        <localpath watch="/data/res.jinhui365.com">
<!--##遠程ip和模塊名稱-->
            <remote ip="172.16.1.12" name="res"/>
            <remote ip="172.16.1.14" name="res"/>
            <!--<remote ip="192.168.8.40" name="tongbu"/>-->
        </localpath>
        <rsync>
<!--##rsync同步參數-->
            <commonParams params="-auvPz"/>
<!--##rsync同步認證-->
            <auth start="true" users="res" passwordfile="/etc/password.rsync"/>
<!--##設置rsync遠程服務端口,遠程非默認端口需打開自定義-->
            <userDefinedPort start="false" port="874"/><!-- port=874 -->
<!--##設置超時時間-->
            <timeout start="true" time="100"/><!-- timeout=100 -->
<!--##設置rsync+ssh加密傳輸模式 默認:關閉 ,開啓須要設置SSH加密證書-->
            <ssh start="false"/>
        </rsync>
<!--##執行失敗的語句存放在/tmp/rsync_fail_log.sh中,隔60分鐘後會再次執行同步失敗的語句-->
        <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">
<!--當文件同步完成後,會調用command插件,如同步文件是test.php,則test.php文件在改動以後,調用rsync同步到遠程服務器後,調用command插件,執行/bin/sh test.php  suffix >/dev/null 2>&1  若是suffix設置了,則會放在inotify事件test.php以後,若是ignoreError爲true,則會添加>/dev/null 2>&1固然還能夠設置command的filter,當filter爲ture,include能夠只對正則匹配到的文件,調用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">
<!-- 「refreshCDN」,就在同步過程當中將文件發送到目的服務器後刷新cdn接口。若是不想使用,則將start屬性設爲false便可。若是須要使用其餘插件,則查看其餘plugin標籤,將插件名稱改成xml中其它插件的名稱便可。該模塊根據chinaCDN的協議,進行設計,當有文件產生的時候,就向cdn接口發送須要刷新的路徑位置
其中 localpath watch 是須要監控的目錄。
cdnifo標籤制定了cdn接口的域名,端口號,以及用戶名與密碼。
sendurl標籤是須要刷新的url的前綴。
regexurl標籤中的,regex屬性爲true時候,使用match屬性的正則語句匹配inotify返回的路徑信息,並將正則匹配到的部分做爲url一部分,-->
<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守護進程echo 'export PATH=$PATH:/usr/local/sersync/GNU-Linux-x86'>>/etc/profile

相關文章
相關標籤/搜索