假設有下列需求:
假設兩台伺服器:
192.168.0.1 來源伺服器 有目錄/opt/test/
192.168.0.2 目標伺服器 有目錄/opt/bak/test/
實現的目的就是保持這兩個伺服器某個檔案目錄保持即時同步
實作方式: 透過rsync+inotify-tools結合來實現
首先要為兩台機器添加信任關係,具體方法已經在前面的文章介紹過了
詳情查看: linux新增信任關係免密碼登入
需要安裝軟體:
在來源伺服器和目標伺服器都需要安裝
來源伺服器: 是rsync客戶端,不需要設定
目標伺服器: 是rsync伺服器端,需要設定/etc/rsyncd.conf裡的內容
此工具為檔案即時監控工具,需要linux作業系統核心支持,核心支援需要至少版本為2.6.13
檢查作業系統是否支持,執行如下:
uname -r 查看版本
#回傳:
2.6.32-358.6.1.el6.x86_64
則表示版本2.6.32 大於2.6.13,則支援。
執行:
ll /proc/sys/fs/inotify total 0 -rw-r--r-- 1 root root 0 Oct 18 12:18 max_queued_events -rw-r--r-- 1 root root 0 Oct 18 12:18 max_user_instances -rw-r--r-- 1 root root 0 Oct 18 12:18 max_user_watches
有三項輸出,則表示預設支援inotify,可以安裝inotify-tools工具.
# 若不支持,需要採用新版本的linux作業系統
版本達到要求,就可以安裝了。
安裝inotify-tools後會在相關安裝目錄下產生以下兩個檔案:
ll /usr/local/bin/ total 88 -rwxr-xr-x 1 root root 44327 Oct 10 15:32 inotifywait -rwxr-xr-x 1 root root 41417 Oct 10 15:32 inotifywatch
則表示安裝成功。
注意: 在 來源伺服器上需要安裝,目標伺服器上不需要安裝inotify。
#!/bin/bash src=/opt/test/ /usr/local/bin/inotifywait -mrq --timefmt '%d/%m/%y %H:%M' --format '%T %w%f%e' -e close_write,delete,create,attrib $src | while read file do /usr/bin/rsync -arzuq $src 192.168.0.1::www/ echo " ${file} was rsynced" >>/opt/soft/log/rsync.log 2>&1 done給予執行權限: chmod +x inotify_bak.sh
tail -f /opt/soft/log/rsync.log錯誤解決:/usr/local/bin/inotifywait: error while loading shared libraries: libinotifytools.so.0: cannot open shared object file: No such file or directory#object file: No such file or directory
##這是因為找不到函式庫檔案的原因,做一個軟連線就好了
ln -s /usr/local/lib/libinotifytools.so.0 /usr/lib64/libinotifytools.so.0
以上是linux下實作兩台伺服器即時同步方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!