源伺服器:192.168.21.129
目标伺服器:192.168.21.127,192.168.21.128
目的:把源伺服器上/home/www.osyunwei.com目錄實時同步到目标伺服器的/home/www.osyunwei.com下
系統運維 www.osyunwei.com 溫馨提醒:qihang01原創内容 版權所有,轉載請注明出處及原文連結
具體操作:
第一部分:分别在兩台目标伺服器192.168.21.127,192.168.21.128上操作
一、分别在兩台目标伺服器安裝rsync服務端
1、關閉SELINUX
#編輯防火牆配置檔案
vi /etc/selinux/config
#SELINUX=enforcing #注釋掉
#SELINUXTYPE=targeted #注釋掉
SELINUX=disabled #增加
:wq! #儲存,退出
setenforce 0 #立即生效
2、開啟防火牆tcp 873端口(Rsync預設端口)
vi /etc/sysconfig/iptables #編輯防火牆配置檔案
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 873 -j ACCEPT
:wq! #儲存退出
/etc/init.d/iptables restart #最後重新開機防火牆使配置生效
3、安裝rsync服務端軟體
yum install rsync xinetd #安裝
vi /etc/xinetd.d/rsync #編輯配置檔案,設定開機啟動rsync
disable = no #修改為no
/etc/init.d/xinetd start #啟動(CentOS中是以xinetd來管理Rsync服務的)
4、建立rsyncd.conf配置檔案
vi /etc/rsyncd.conf #建立配置檔案,添加以下代碼
log file = /var/log/rsyncd.log #日志檔案位置,啟動rsync後自動産生這個檔案,無需提前建立
pidfile = /var/run/rsyncd.pid #pid檔案的存放位置
lock file = /var/run/rsync.lock #支援max connections參數的鎖檔案
secrets file = /etc/rsync.pass #使用者認證配置檔案,裡面儲存使用者名稱和密碼,後面會建立這個檔案
motd file = /etc/rsyncd.motd #rsync啟動時歡迎資訊頁面檔案位置(檔案内容自定義)
[home_www.osyunwei.com] #自定義名稱
path = /home/www.osyunwei.com/ #rsync服務端資料目錄路徑
comment = home_www.osyunwei.com #子產品名稱與[home_www.osyunwei.com]自定義名稱相同
uid = root #設定rsync運作權限為root
gid = root #設定rsync運作權限為root
port=873 #預設端口
use chroot = no #預設為true,修改為no,增加對目錄檔案軟連接配接的備份
read only = no #設定rsync服務端檔案為讀寫權限
list = no #不顯示rsync服務端資源清單
max connections = 200 #最大連接配接數
timeout = 600 #設定逾時時間
auth users = home_www.osyunwei.com_user #執行資料同步的使用者名,可以設定多個,用英文狀态下逗号隔開
hosts allow = 192.168.21.129 #允許進行資料同步的用戶端IP位址,可以設定多個,用英文狀态下逗号隔開
hosts deny = 192.168.21.254 #禁止資料同步的用戶端IP位址,可以設定多個,用英文狀态下逗号隔開
:wq! #儲存,退出
5、建立使用者認證檔案
vi /etc/rsync.pass #配置檔案,添加以下内容
home_www.osyunwei.com_user:123456 #格式,使用者名:密碼,可以設定多個,每行一個使用者名:密碼
:wq! #儲存退出
6、設定檔案權限
chmod 600 /etc/rsync.pass #設定檔案所有者讀取、寫入權限
7、啟動rsync
/etc/init.d/xinetd start #啟動
service xinetd stop #停止
service xinetd restart #重新啟動
8、建立[home_www.osyunwei.com]子產品中path變量提到的目錄
mkdir /home/www.osyunwei.com/
第二部分:在資料源伺服器192.168.21.129上操作
一、安裝Rsync用戶端
vi /etc/selinux/config #編輯防火牆配置檔案
#SELINUX=enforcing #注釋掉
#SELINUXTYPE=targeted #注釋掉
SELINUX=disabled #增加
setenforce 0 #立即生效
2、開啟防火牆tcp 873端口(Rsync預設端口,做為用戶端的Rsync可以不用開啟873端口)
vi /etc/sysconfig/iptables #編輯防火牆配置檔案
3、安裝Rsync用戶端端軟體
whereis rsync #檢視系統是否已安裝rsync,出現下面的提示,說明已經安裝
rsync: /usr/bin/rsync /usr/share/man/man1/rsync.1.gz
yum install xinetd #隻安裝xinetd即可,CentOS中是以xinetd來管理rsync服務的
yum install rsync xinetd #如果預設沒有rsync,運作此指令進行安裝rsync和xinetd
/etc/init.d/xinetd start #啟動(CentOS中是以xinetd來管理rsync服務的)
4、建立認證密碼檔案
vi /etc/passwd.txt #編輯檔案,添加以下内容
123456 #密碼
chmod 600 /etc/passwd.txt #設定檔案權限,隻設定檔案所有者具有讀取、寫入權限即可
5、測試源伺服器192.168.21.129到兩台目标伺服器192.168.21.127,192.168.21.128之間的資料同步
mkdir /home/www.osyunwei.com/ceshi #在源伺服器上建立測試檔案夾,然後在源伺服器運作下面2行指令
rsync -avH --port=873 --progress --delete /home/www.osyunwei.com/ [email protected]::home_www.osyunwei.com --password-file=/etc/passwd.txt
rsync -avH --port=873 --progress --delete /home/www.osyunwei.com/ [email protected]::home_www.osyunwei.com --password-file=/etc/passwd.txt
運作完成後,分别在兩台目标伺服器192.168.21.127,192.168.21.128上檢視,在/home/www.osyunwei.com目錄下有ceshi檔案夾,說明資料同步成功。
二、安裝sersync工具,實時觸發rsync進行同步
1、檢視伺服器核心是否支援inotify
ll /proc/sys/fs/inotify #列出檔案目錄,出現下面的内容,說明伺服器核心支援inotify
-rw-r--r-- 1 root root 0 Mar 7 02:17 max_queued_events
-rw-r--r-- 1 root root 0 Mar 7 02:17 max_user_instances
-rw-r--r-- 1 root root 0 Mar 7 02:17 max_user_watches
備注:Linux下支援inotify的核心最小為2.6.13,可以輸入指令:uname -a檢視核心
CentOS 5.X 核心為2.6.18,預設已經支援inotify
2、修改inotify預設參數(inotify預設核心參數值太小)
檢視系統預設參數值:
sysctl -a | grep max_queued_events
結果是:fs.inotify.max_queued_events = 16384
sysctl -a | grep max_user_watches
結果是:fs.inotify.max_user_watches = 8192
sysctl -a | grep max_user_instances
結果是:fs.inotify.max_user_instances = 128
修改參數:
sysctl -w fs.inotify.max_queued_events="99999999"
sysctl -w fs.inotify.max_user_watches="99999999"
sysctl -w fs.inotify.max_user_instances="65535"
vi /etc/sysctl.conf #添加以下代碼
fs.inotify.max_queued_events=99999999
fs.inotify.max_user_watches=99999999
fs.inotify.max_user_instances=65535
參數說明:
max_queued_events:
inotify隊列最大長度,如果值太小,會出現"** Event Queue Overflow **"錯誤,導緻監控檔案不準确
max_user_watches:
要同步的檔案包含多少目錄,可以用:find /home/www.osyunwei.com -type d | wc -l 統計,必須保證max_user_watches值大于統計結果(這裡/home/www.osyunwei.com為同步檔案目錄)
max_user_instances:
每個使用者建立inotify執行個體最大值
3、安裝sersync
sersync下載下傳位址:
①https://sersync.googlecode.com/files/sersync2.5.4_64bit_binary_stable_final.tar.gz
②http://xz5.jb51.net:81/201111/tools/sersync_64bit_binary_stable_final.tar.gz
wget sersync2.5.4_64bit_binary_stable_final.tar.gz到/usr/local/src目錄下
cd /usr/local/src
tar zxvf sersync2.5.4_64bit_binary_stable_final.tar.gz #解壓
mv GNU-Linux-x86 /usr/local/sersync #移動目錄到/usr/local/sersync
4、配置sersync
cd /usr/local/sersync #進入sersync安裝目錄
cp confxml.xml confxml.xml-bak #備份原檔案
vi confxml.xml #編輯,修改下面的代碼
<?xml version="1.0" encoding="ISO-8859-1"?>
...
<sersync>
<localpath watch="/home/www.osyunwei.com">
<remote ip="192.168.21.127" name="home_www.osyunwei.com"/>
<remote ip="192.168.21.128" name="home_www.osyunwei.com"/>
<!--<remote ip="192.168.8.40" name="tongbu"/>-->
</localpath>
<rsync>
<commonParams params="-artuz"/>
<auth start="true" users="home_www.osyunwei.com_user" passwordfile="/etc/passwd.txt"/>
<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="true" schedule="600"><!--600mins-->
<crontabfilter start="false">
<exclude expression="*.php"></exclude>
<exclude expression="info/*"></exclude>
</crontabfilter>
</crontab>
localpath watch="/home/www.osyunwei.com":#源伺服器同步目錄
192.168.21.127,192.168.21.128:#目标伺服器IP位址
name="home_www.osyunwei.com": #目标伺服器rsync同步目錄子產品名稱
users="home_www.osyunwei.com_user": #目标伺服器rsync同步使用者名
passwordfile="/etc/passwd.txt": #目标伺服器rsync同步使用者的密碼在源伺服器的存放路徑
remote ip="192.168.21.127": #目标伺服器ip,每行一個
remote ip="192.168.21.128": #目标伺服器ip,每行一個
failLog path="/tmp/rsync_fail_log.sh" #腳本運作失敗日志記錄
start="true" #設定為true,每隔600分鐘執行一次全盤同步
啟動服務
/usr/local/sersync/sersync2 -d -r -o /usr/local/sersync/confxml.xml
5、設定sersync監控開機自動執行
vi /etc/rc.d/rc.local #編輯,在最後添加一行
/usr/local/sersync/sersync2 -d -r -o /usr/local/sersync/confxml.xml #設定開機自動運作腳本
6、用腳本定時監控sersync是否正常運作
vi /home/crontab/check_sersync.sh #編輯,添加以下代碼
#!/bin/sh
sersync="/usr/local/sersync/sersync2"
confxml="/usr/local/sersync/confxml.xml"
status=$(ps aux |grep 'sersync2'|grep -v 'grep'|wc -l)
if [ $status -eq 0 ];
then
$sersync -d -r -o $confxml &
else
exit 0;
fi
chmod +x /home/crontab/check_sersync.sh #添加腳本執行權限
vi /etc/crontab #編輯,在最後添加下面一行
*/5 * * * * root /home/crontab/check_sersync.sh > /dev/null 2>&1 #每隔5分鐘執行一次腳本
service crond reload #重新加載服務
6、測試sersync實時觸發rsync同步腳本是否正常運作
在源伺服器192.168.21.129上建立檔案inotify_rsync_ceshi
mkdir /home/www.osyunwei.com/inotify_rsync_ceshi
重新啟動源伺服器:192.168.21.129
等系統啟動之後,檢視兩台目标伺服器192.168.21.127,192.168.21.128的/home/www.osyunwei.com下是否有inotify_rsync_ceshi檔案夾
然後再在源伺服器192.168.21.129建立檔案夾inotify_rsync_ceshi_new
mkdir /home/www.osyunwei.com/inotify_rsync_ceshi_new
繼續檢視兩台目标伺服器192.168.21.127,192.168.21.128的/home/www.osyunwei.com下是否有inotify_rsync_ceshi_new檔案夾
如果以上測試都通過,說明inotify實時觸發rsync同步腳本運作正常。
本文轉自 朱科強 51CTO部落格,原文連結:http://blog.51cto.com/zhukeqiang/1903624,如需轉載請自行聯系原作者