首頁 > 後端開發 > php教程 > linux下兩台伺服器檔案即時同步方案設計與實現

linux下兩台伺服器檔案即時同步方案設計與實現

WBOY
發布: 2016-07-30 13:31:28
原創
1148 人瀏覽過

原文位址 http://blog.csdn.net/5iasp/article/details/13630927

linux下兩台伺服器檔案即時同步方案設計與實作


假設有下列需求:

192.168.0.1 來源伺服器  有目錄/opt/test/

192.168.0.2 目標伺服器  有目錄/opt/bak/test/

實現的目的就是保持這兩個檔案目錄保持即時同步伺服器

實作方式: 透過rsync+inotify-tools結合來實現


需要安裝軟體:


1.  rsync 同步軟體

  需要設定


 目標伺服器: 是rsync伺服器端,需要設定/etc/rsyncd.conf裡的內容


  安裝後需要新設定檔:/etc/rsyncd.conf

  安裝後需要新設定檔:/etc/rsyncd.conf

  配置檔案在: /etc/
檔案內容如下:

uid = root

gid = root

use chroot = no
max connections = 10

strict modes = yes

pid file=/var/run/rs/rs.pid/run/rs. rsyncd.lock
log file= =/var/run/rsyncd.log

[www]
path= /opt/bak/test
comment= analyse
read only = false
hosts 🜎 .  inotify-tools 工具

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

檢查操作系統是否支持,執行如下:

uname -r  查看版本

回傳:

2.6.32-220.4.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-- 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 41417 Oct 10 15:32 inotifywatch

則表示安裝成功。

注意: 在 來源伺服器上需要安裝,目標伺服器上不需要安裝inotify。


3. 相關腳本:

 在來源伺服器上新腳本:

inotify_bak.sh

#!/bin/bash
src=/opt/test

#!/bin/bash

src=/opt/test


#!/bin/bash

src=/opt/test


#!/bin/bash

src=/opt/test

--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.2::www/

      echo "  ${file} was rsynced" >>/opt/soft/log/rsync.log 2>{file} was rsynced" >>/opt/soft/log/rsync.log 2>>1的www 是在目標服務器/etc/rsyncd.conf裡配置的模塊名稱:[www]


賦予執行權限: chmod +x  inotify_bak.sh

然後執行: inotify_bak.sh &  放入後台執行

4.關於啟動

   目標伺服器:先啟動rsync後台服務: /usr/bin/rsync --daemon

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

,inotify_bak.sh腳本會偵測到,然後同步到目標伺服器的相關目錄下

 

   可以檢視日誌檔案: /opt/soft/log/rsync.log 指令如下:觀察即時同步的情況。

   tail -f  /opt/soft/log/rsync.log

以上就介紹了linux下兩台伺服器檔案即時同步方案設計和實現,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板