天天看點

rsync+inotify實時同步案例rsync+inotify實時同步案例

rsync+inotify實時同步案例

http://blog.51cto.com/11886896

随着應用系統規模的不斷擴大,對資料的安全性和可靠性也提出的更好的要求,rsync在高端業務系統中也逐漸暴露出了很多不足,首先,rsync同步資料時,需要掃描所有檔案後進行比對,進行差量傳輸。如果檔案數量達到了百萬甚至千萬量級,掃描所有檔案将是非常耗時的。而且正在發生變化的往往是其中很少的一部分,這是非常低效的方式。其次,rsync不能實時的去監測、同步資料,雖然它可以通過linux守護程序的方式進行觸發同步,但是兩次觸發動作一定會有時間差,這樣就導緻了服務端和用戶端資料可能出現不一緻,無法在應用故障時完全的恢複資料。基于以上原因,rsync+inotify組合出現了!

1.1 inotify介紹

2.1 rsync+inotify同步邏輯圖

3.1 環境部署

4.1 inotify-slave部署

4.1.1檢查是否安裝rsync

4.1.2 建立rsync使用者及子產品目錄并更改其使用者組

4.1.3 編寫rsync daemon配置檔案/etc/rsyncd.conf

4.1.4 配置虛拟使用者的密碼檔案

4.1.5 啟動rsync 服務

4.1.6 通過inotify-master測試推送

5.1 inotify-master部署

5.1.1 檢視目前系統是否支援inotify

5.1.2 inotify安裝

5.1.3 inotify之inotifywait指令常用參數詳解

5.1.4 編寫監控腳本并加載到背景執行

5.1.5 實時同步測試

inotify是一種強大的、細粒度的、異步的檔案系統事件控制機制。linux核心從2.6.13起,加入了inotify支援,通過inotify可以監控檔案系統中添加、删除、修改、移動等各種事件,利用這個核心接口,第三方軟體就可以監控檔案系統下檔案的各種變化情況,而inotify-tools正是實施監控的軟體。

rsync+inotify實時同步案例rsync+inotify實時同步案例

2.1基本架構

3.1 基本環境部署(這裡為了避免不相容的情況出現,采用統一版本的系統)

主機名 IP位址 系統版本 核心版本
inotify master 192.168.42.116 centos 6.8 2.6.32-642.el6.x86_64
inotify slave 192.168.42.112

這裡就是部署rsync服務,rsync daemon工作模式。

 rpm -qa  rsync      
rsync+inotify實時同步案例rsync+inotify實時同步案例

結果

useradd rsync -s /sbin/nologin  -M
mkdir /backup   
#建立rsync daemon工作模式的子產品目錄chown rsync.rsync /backup/   
#更改子產品目錄的使用者組ll -d /backup/      

##rsyncd.conf start##
#工作中指定使用者(需要指定使用者)
uid = rsync
gid = rsync
#相當于黑洞.出錯定位
use chroot = no
#有多少個用戶端同時傳檔案
max connections = 200
#逾時時間
timeout = 300
#程序号檔案
pid file = /var/run/rsyncd.pid
#鎖檔案
lock file = /var/run/rsync.lock
#日志檔案
log file = /var/log/rsyncd.log
#子產品開始
#這個子產品對應的是推送目錄#子產品名稱随便起[backup]#需要同步的目錄path = /backup/
#表示出現錯誤忽略錯誤
ignore errors
#表示網絡權限可寫(本地控制真正可寫)read only = false
#這裡設定IP或讓不讓同步list = false
#指定允許的網段
hosts allow = 192.168.42.0/24
#拒絕連結的位址,一下表示沒有拒絕的連結。
hosts deny = 0.0.0.0/32#不要動的東西(預設情況)
#虛拟使用者
auth users = root
#虛拟使用者的密碼檔案secrets file = /etc/rsync.password
#配置檔案的結尾#rsync_config_______________end      

4.1.4 配置用戶端及虛拟inotify-backup使用者的密碼檔案

  echo "root:123456" >/etc/rsync.password  
  #注:這裡是用戶端,密碼檔案得寫全,root為rsync同步使用的使用者,123456為這個虛拟使用者的密碼
  chmod 600 /etc/rsync.password 
  #為密碼檔案提權,增加安全性      

rsync --daemon   #啟動rsync服務ps -ef |grep rsync
root       2389      1  0 10:15 ?        00:00:00 rsync --daemon
root       2392   2305  0 10:15 pts/0    00:00:00 grep rsync
ss    -tunl
tcp   LISTEN     0      5                                                :::873                                             :::*     
tcp   LISTEN     0      5                                                 *:873                                              *:*      

             inotify-master配置密碼檔案,測試推送

echo "123456" >/etc/rsync.password
#注意:伺服器端隻要寫密碼即可,切記。
chmod 600 /etc/rsync.password
echo "hello sjf">test.txt
rsync -avz test.txt [email protected]::backup --password-file=/etc/rsync.password
sending incremental file list
test.txt

sent 79 bytes  received 27 bytes  42.40 bytes/sec
total size is 10  speedup is 0.09inotify-slave檢查:
ll /backup/
total 4-rw-r--r-- 1 rsync rsync 10 Oct 29 10:20 test.txt
cat /backup/test.txt 
hello sjf      

注:

inotify是rsync用戶端安裝和執行的

企業場景壓力測試200-300個同步限制,受網卡,磁盤,帶寬等的制約。

 ll /proc/sys/fs/inotify/
total 0-rw-r--r-- 1 root root 0 Oct 29 10:43 max_queued_events
-rw-r--r-- 1 root root 0 Oct 29 10:43 max_user_instances
-rw-r--r-- 1 root root 0 Oct 29 10:43 max_user_watches#顯示這三個檔案則證明支援。番外:
   /proc/sys/fs/inotify/max_queued_evnets      
表示調用inotify_init時配置設定給inotify instance中可排隊的event的數目的最大值,超出這個值的事件被丢棄,但會觸發IN_Q_OVERFLOW事件。
   /proc/sys/fs/inotify/max_user_instances 
表示每一個real user ID可建立的inotify instatnces的數量上限。
   /proc/sys/fs/inotify/max_user_watches 
表示每個inotify instatnces可監控的最大目錄數量。如果監控的檔案數目巨大,需要根據情況,适當增加此值的大小。
例如: echo 30000000 > /proc/sys/fs/inotify/max_user_watches      

5.1.2 inotify的安裝

inotify可以編譯安裝也可以直接yum安裝
我這裡采用的是yum安裝的方式
yum -y install inotify-tools
當然我這裡也給出編譯安裝的方法
wget  http://jaist.dl.sourceforge.net/project/inotify-tools/inotify-tools/3.13/inotify-tools-3.13.tar.gz
tar zxf inotify-tools-3.14.tar.gzcd inotify-tools-3.14./configure --prefix=/usr/local/inotify-3.14 
#配置inotify,并指定安裝路徑為/usr/local/inotify-3.14make && make install
注意這裡安裝完成後記得将指令所在路徑引入環境變量      

inotifywait --help
-r|--recursive   Watch directories recursively. 
#遞歸查詢目錄-q|--quiet      Print less (only print events). 
#列印監控事件的資訊-m|--monitor   Keep listening for events forever.  Without this option, inotifywait 
will exit after one  event is received.        
#始終保持事件監聽狀态--excludei <pattern>  Like --exclude but case insensitive.    
#排除檔案或目錄時,不區分大小寫。--timefmt <fmt> strftime-compatible format string for use with %T in--format string. 
#指定時間輸出的格式--format <fmt>  Print using a specified printf-like format string; 
read the man page for more details.
#列印使用指定的輸出類似格式字元串-e|--event <event1> [ -e|--event <event2> ... ] Listen for specific event(s).  
If omitted, all events are  listened for.  
 #通過此參數可以指定需要監控的事件如下所示:
Events:
access           file or directory contents were read       
#檔案或目錄被讀取。modify           file or directory contents were written    
#檔案或目錄内容被修改。attrib           file or directory attributes changed      
#檔案或目錄屬性被改變。close            file or directory closed, regardless of read/write mode   
 #檔案或目錄封閉,無論讀/寫模式。open             file or directory opened                    
 #檔案或目錄被打開。moved_to         file or directory moved to watched directory    
 #檔案或目錄被移動至另外一個目錄。
move             file or directory moved to or from watched directory    
#檔案或目錄被移動另一個目錄或從另一個目錄移動至目前目錄。
create           file or directory created within watched directory     
#檔案或目錄被建立在目前目錄delete           file or directory deleted within watched directory     
#檔案或目錄被删除
unmount          file system containing file or directory unmounted  
#檔案系統被解除安裝      

#!/bin/bash#sjfhost01=192.168.42.116  
#inotify-slave的ip位址src=/backup/                   
#本地監控的目錄dst=backup                     
#inotify-slave的rsync服務的子產品名user=rsync_backup              
#inotify-slave的rsync服務的虛拟使用者rsync_passfile=/etc/rsync.password           
#本地調用rsync服務的密碼檔案#inotify_home=/usr/share/doc/inotify-3.14     
#inotify的安裝目錄inotify_home=/usr   
#這個是yum安裝的軟體的安裝所在目錄#judgeif [ -z "$src" ] \
||  [ -z  "${rsync_passfile}" ] \
|| [ -z  "${inotify_home}/bin/inotifywait" ] \
|| [ -z  "/usr/bin/rsync" ];thenecho "Check File and Folder"  
exit 9
fi
${inotify_home}/bin/inotifywait -mrq --timefmt '%d/%m/%y %H:%M' 
--format '%T %w%f' -e close_write,delete,create,attrib $src \
 | while read filedo#  rsync -avzP --delete --timeout=100 
 --password-file=${rsync_passfile} $src $user@$host01::$dst >/dev/null 2>&1cd $src 
 && rsync -aruz -R --delete ./  --timeout=100 $user@$host01::$dst 
 --password-file=${rsync_passfile} >/dev/null 2>&1doneexit 0


 #将腳本加入背景執行
 bash inotify.sh  &
[1] 3357      

inotify-master操作:

cd /backup/for i in `seq 200`;do  touch   $i  ;done  
#建立200個檔案ls -l --time-style=full-iso
total 0
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.183409656 +0800 1
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.225409783 +0800 10
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.526410667 +0800 100
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.528410673 +0800 101
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.530410679 +0800 102
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.533410688 +0800 103
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.535410694 +0800 104
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.538410703 +0800 105
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.539410707 +0800 106
-rw-r--r-- 1 root root 0 2016-10-29 11:38:16.552410742 +0800 107      

inotify-slave檢查

ll  --time-style=full-iso
total 0
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 1
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 10
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 100
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 101
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 102
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 103
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 104
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 105
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 106
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 107
-rw-r--r-- 1 rsync rsync 0 2016-10-29 11:38:16.000000000 +0800 108      

這樣我們結合inotify的測試就完成了,是不是很簡單!

繼續閱讀