Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> linux多服務器之間的目錄文件同步

linux多服務器之間的目錄文件同步

日期:2017/1/20 17:43:20      編輯:Linux系統常見問題解答
  web1:10.80.11.243 web2:10.80.11.244 code:10.80.11.245 更新code服務器的代碼後,自動同步到web1和web2,刪除code服務器文件,web1和web2也刪除 服務器端的安裝(N台WEB都這樣配置)
1、首先要求Linux內核在2.6以上,才支持inotify [root@web1 html]# uname -a Linux web1 2.6.18-194.el5 #1 SMP Fri Apr 2 14:58:35 EDT 2010 i686 i686 i386 GNU/Linux
2、檢查是否安裝rsync軟件 [root@web1 html]# rpm -qa |grep rsync rsync-2.6.8-3.1 如果沒有的話,通過yum –y install rsync安裝
3、新建rsync配置文件,該軟件安裝默認沒有配置文件
#vim /etc/rsyncd.conf motd file = /etc/rsyncd.motd uid=root gid=root max connections=36000 use chroot=no log file=/var/log/rsyncd.log log format = %t %a %m %f %b pid file=/var/run/rsyncd.pid lock file=/var/run/rsyncd.lock timeout = 300 [tongbu] path=/var/www/html list=yes comment = this is comment ignore errors = yes read only = no hosts allow = 10.80.11.245 hosts deny = * auth users backup secrets file = /etc/rsyncd.secrets
注:tongbu為發布模塊,相當於路徑的別名 hosts allow是只允許連接的IP secrets file = /etc/rsyncd.secrets 這是密碼文件,同步的用戶為backup,下面創建同步用戶 #useradd backup #passwd backup #vim /etc/rsyncd.secrets backup:123456 格式為 用戶名:密碼 #chmod 600 /etc/rsyncd.secrets 設置只有root用戶才能查看這個文件
4、啟動服務 /usr/bin/rsync --daemon --config=/etc/rsyncd.conf 其他的WEB服務器配置和上面是一樣的。如果需要開機啟動,加入到/etc/rc.local
發布端的配置
1、發布端主要利用開源軟件sersync,網站為:http://code.google.com/p/sersync/ #cd /usr/local/ #wget http://sersync.googlecode.com/files/sersync2.5RC1_32bit_binary.tar.gz #tar –zxvf sersync2.5RC1_32bit_binary.tar.gz #cd GNU-Linux-x86
2、修改配置文件
#vim confxml.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<head version="2.5">
<host hostip="localhost" port="8008">
</host>
<filter start="false">
<exclude expression="(。*)\.gz">
</exclude>
<exclude expression="^info/*">
</exclude> </filter>
<inotify>
<delete start="true"/>
<create start="true"/>
</inotify>
<debug start="false"/>
<sersync> <localpath watch="/var/www/html">
<remote ip="10.80.11.243" name="tongbu"/>
<remote ip="10.80.11.244" name="tongbu"/>
</localpath>
<rsync>
<auth start="true" users="backup" passwordfile="/etc/rsync.pas"/>
<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 60min execute once-->
<crontab start="false" schedule="600">
<!--600mins-->
<crontabfilter start="false">
<exclude expression="*.php">
</exclude>
<exclude expression="info/*">
</exclude>
</crontabfilter>
</crontab>
<plugin start="false" name="command"/>
</sersync>
<plugin name="command">
<param prefix="/bin/sh" suffix="" ignoreError="true"/>
<!--prefix /opt/tongbu/mmm.sh suffix-->
<filter start="false">
<include expression="(。*)\.php"/>
<include expression="(。*)\.sh"/>
</filter>
</plugin>
<plugin name="socket">
<localpath watch="/opt/tongbu">
<deshost ip="192.168.138.20" port="8009"/>
</localpath>
</plugin> <plugin name="refreshCDN">
<localpath watch="/data0/htdocs/cms.xoyo.com/site/">
<cdninfo domainname="ccms.chinacache.com" port="80" username="xxxx" passwd="xxxx"/>
<sendurl base="http://pic.xoyo.com/cms"/>
<regexurl regex="false" match="cms.xoyo.com/site([/a-zA-Z0-9]*)。xoyo.com/images"/>
</localpath>
</plugin>
</head>
/var/www/html為發布服務器的源碼發布目錄 主要修改紅色標記部分,密碼文件為/etc/rsync.pas #vim /etc/rsync.pas 123456# 解釋:123456代表的是Rsync server端的密碼,並且要以"#"做結尾。如果有多個密碼,增加多行就行。 #chmod 600 /etc/rsync.pas
 3、啟動服務 #./sersync2 -d –r 這種方式常駐進程,如果需要開機啟動,加入到/etc/rc.local
這樣只要修改發布服務器/var/www/html的文件,web服務器就會自動同步。
**********************************************************************************************************
附錄二:rsyncd.onf文件注釋
全局參數
uid = root//運行RSYNC守護進程的用戶
gid = root//運行RSYNC守護進程的組
use chroot = no //不使用chroot
max connections = 4 // 最大連接數為4
strict modes =yes//是否檢查口令文件的權限
port = 873//默認端口873
模塊參數
[backup] //這裡是認證的模塊名,在client端需要指定
path = /home/backup///需要做鏡像的目錄,不可缺少!
comment = This is a test //這個模塊的注釋信息
ignore errors//可以忽略一些無關的IO錯誤
read only = yes// 只讀
list = no //不允許列文件
auth users = hening //認證的用戶名,如果沒有這行則表明是匿名,此用戶與系統無關
secrets file = /etc/rsync.pas //密碼和用戶名對比表,密碼文件自己生成
hosts allow = 192.168.1.1, 10.10.10 .10//允許主機
hosts deny = 0.0.0 .0/0 //禁止主機
#transfer logging = yes
注釋:下面這些綠色文件是安裝完RSYNC服務後自動生成的文件
pid file = /var/run/rsyncd.pid//pid文件的存放位置
lock file = /var/run/rsync.lock //鎖文件的存放位置
log file = /var/log/rsyncd.log//日志記錄文件的存放位置
Copyright © Windows教程網 All Rights Reserved