rsync實時同步

 

假設有以下需求:linux

假設兩個服務器:bash

192.168.0.1 源服務器  有目錄 /opt/test/服務器

192.168.0.2 目標服務器  有目錄 /opt/bak/test/工具

實現的目的就是保持這兩個服務器某個文件目錄保持實時同步測試

 

實現方式: 經過rsync+inotify-tools結合來實現spa

準備工做:

首先要給兩臺機器添加信任關係,具體方法已經在前面的文章介紹過了操作系統

詳情查看: linux添加信任關係免密碼登陸日誌

須要安裝軟件:code

1.  rsync 同步軟件

    在 源服務器 和 目標服務器 都須要安裝orm

    源服務器: 是rsync客戶端,不須要配置

    目標服務器: 是rsync服務器端,須要配置/etc/rsyncd.conf裏的內容

2.  inotify-tools 工具

    該工具爲文件實時監控工具,須要linux操做系統內核支持,內核支持須要至少版本爲2.6.13

    檢查操做系統是否支持,執行以下:

    uname -r  查看版本

    返回:

1
     2.6.32-358.6.1.el6.x86_64

    則表示版本2.6.32 大於2.6.13,則支持。

    執行:

1
2
3
4
5
     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後會在相關安裝目錄下生成以下兩個文件:

1
2
3
4
     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。

3. 相關腳本:

    在源服務器上新建腳本:

    inotify_bak.sh

1
2
3
4
5
6
7
     #!/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

    而後執行:nohup inotify_bak.sh &  放入後臺執行

4. 關於啓動

    目標服務器:先啓動rsync後臺服務: /usr/bin/rsync --daemon

    來源服務器: 執行 inotify_bak.sh & 

 

5. 測試:

    在來源服務器目錄中新建目錄和文件,inotify_bak.sh腳本會檢測到,而後同步到目標服務器的相關目錄下

 

    能夠查看日誌文件: /opt/soft/log/rsync.log 命令以下:觀察實時同步的狀況。

1
     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

這是由於找不到庫文件的緣由,作一個軟鏈接就行了

1
ln  -s  /usr/local/lib/libinotifytools .so.0  /usr/lib64/libinotifytools .so.0
相關文章
相關標籤/搜索