关于解决多台服务器间的文件实时同步问题( 二 )


a、安装rsync:
  [root@nginx ~]# cd /usr/src/ [root@nginx src]# tar zxvf rsync-3.0.9.tar.gz [root@nginx src]# cd rsync-3.0.9 [root@nginx rsync-3.0.9]# ./configure --prefix=/usr/local/rsync [root@nginx rsync-3.0.9]# make [root@nginx rsync-3.0.9]# make installb、创建密码认证文件:
  [root@nginx rsync-3.0.9]# cd /usr/local/rsync/ [root@nginx rsync]# echo "rsync-pwd" >/usr/local/rsync/rsync2.passwdc、给密码文件赋予600权限:
[root@nginxrsync]#chmod600rsync2.passwdd、安装inotify:
  [root@nginx rsync]# cd /usr/src/ [root@nginx src]# tar zxvf inotify-tools-3.14.tar.gz [root@nginx src]# cd inotify-tools-3.14 [root@nginx inotify-tools-3.14]# ./configure --prefix=/usr/local/inotify [root@nginx inotify-tools-3.14]# make [root@nginx inotify-tools-3.14]# make installe、创建监控脚本:
  #!/bin/bash host=192.168.188.90 src=https://www.isolves.com/root/test/ des=web user=webuser /usr/local/inotify/bin/inotifywait -mrq --timefmt '%d/%m/%y %H:%M' --format '%T %w%f%e' -e modify,delete,create,attrib $src| while read files do /usr/bin/rsync -vzrtopg --delete --progress --password-file=/usr/local/rsync/rsync2.passwd $src $user@$host::$des echo "${files} was rsynced" >>/tmp/rsync.log 2>&1 done注意:host为第二台服务器IP,src为要监控的路径,web是认证模块名称,最后把监控脚本命名为rsync2.sh放在要监控的路径下 。此处应是/root/test/
f、给监控脚本赋予764权限:
[root@nginxtmp]#chmod764rsync2.shg、创建rsync配置文件:
  uid = root gid = root use chroot = no max connections = 10 strict modes = yes pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock log file = /var/log/rsyncd.log [web] path = /root/test/ comment = web file ignore errors read only = no write only = no hosts allow = 192.168.188.90 hosts deny = * list = false uid = root gid = root auth users = webuser secrets file = /usr/local/rsync/rsync2.passwd该配置文件是用来接收另一台服务器的文件 。其中web是server服务端(90服务器)的认证模块名称,需要与90服务器里的一致 。把配置文件命名为rsync2.conf,放到/usr/local/rsync/目录里
h、启动该配置文件
[root@nginx-backuprsync]#/usr/local/rsync/bin/rsync--daemon--config=/usr/local/rsync/rsync2.conf需要开机启动的话:
[root@nginx-backuprsync]#echo"/usr/local/rsync/bin/rsync--daemon--config=/usr/local/rsync/rsync2.conf">>/etc/rc.local 
4、最后启动两台服务器的监控脚本:
a、在90服务器:
[root@nginxtmp]#sh/root/test/rsync1.sh&需要开机启动的话:
[root@nginxtmp]#echo"/root/test/rsync1.sh">>/etc/rc.localb、在89服务器:
[root@nginxtmp]#sh/root/test/rsync2.sh&需要开机启动的话:
[root@nginxtmp]#echo"/root/test/rsync2.sh">>/etc/rc.local 
1.4测试
任意在其中一台服务器/root/test/路径下,新增一个文件,你会发现另一台服务器也同步了该文件 。
同步之后,两台服务器下都会有rsync1.sh和rsync2.sh监控脚本,注意勿删!
如果需要3台或3台以上的服务器之间进行同步,则需要更改shell脚本,方法类似 。
(转载于CSDN 。)
Author---BlackHan

【关于解决多台服务器间的文件实时同步问题】


推荐阅读