rsync远程同步 +inotify实时同步

rsync是一个开源的快速备份工具,支持增量备份,保持链接和权限。负责发起rsync同步操作到客户机称为发起端,而负责响应到服务器称为备份源。
rsync往往默认安装了

[root@localhost ~]# rpm -qa rsync
rsync-3.0.6-5.el6_0.1.i686

1.SSH备份源,通常需要输入交互验证密码,这一定程度上限制了计划任务的自动执行。所以一般采用SSH备份源到无交互验证,即使用密钥对。

[root@rhel6 ~]# ssh-keygen -t rsa                //创建密钥对
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):     //回车
Enter passphrase (empty for no passphrase):      //回车
Enter same passphrase again:                    //回车
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
2c:56:1d:bf:af:82:69:4c:19:56:5a:18:7e:af:41:24 root@rhel5
[root@rhel6 ~]# ssh-copy-id [email protected]    //将公钥发给服务器
[email protected]'s password:            //输入密码
Now try logging into the machine, with "ssh '[email protected]'", and check in:
  .ssh/authorized_keys
to make sure we haven't added extra keys that you weren't expecting.
[root@localhost 桌面]# ssh [email protected]          //不用密码登录
Last login: Sun Jan 25 10:57:48 2015 from 192.168.130.133
[root@rhel6 ~]#

测试远程备份。

[root@rhel6 ~]# ll /wwwroot/
total 0

在服务器上创建/var/www/html/test文件。

[root@localhost 桌面]# touch /var/www/html/test

回到客户机上同步服务器

[root@rhel6 ~]#rsync -avz [email protected]:/var/www/html /wwwroot/
receiving incremental file list
./
test
sent 33 bytes received 83 bytes 232.00 bytes/sec
total size is 0  speedup is 0.00
[root@rhel6 ~]#ll /wwwroot/
total 0
-rw-r--r-- 1 root root 0 Jan 25 11:16 test

验证成功,不用输入密码。可写成脚本加入任务计划。

2.rsync备份源的无交互验证:
在服务器上创建test2文件。

touch /var/www/html/test2

回到客户端
可以使用环境变量RSYNC_PASSWORD来保存密码。

[root@rhel6 ~]#export RSYNC_PASSWORD=pwd123
[root@rhel6 ~]#rsync -avz [email protected]:/var/www/html/ /wwwroot/
[root@rhel6 ~]#ls /wwwroot/
test test2

验证成功!!
#######rsync 命令选项#######
rsync [选项] 原始位置 目标位置
-r:递归,包含目录及子目录
-l:复制符号链件文件为符号链件文件
-v:显示同步过程详细
-a:归档,保留文件权限,属性
-z:传输文件时压缩
-p:保留文件权限标记
-t:保留文件时间标记
-g:保留文件属组标记
-o:保留文件属主标记
-H:保留硬链文件
-A:保留ACL属性
-D:保留设备文件其他特殊文件
--delete:删除目标位置有而原始位置没有的文件
--checksum:校对决定是否跳过文件



******rsync+inotify实时同步*******


1.调整inotify内核参数

[root@localhost ~]# vim /etc/sysctl.conf 
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576

//根据实际调整,监控数大于监控目标总文件数。


2.安装inotify-tools工具

[root@localhost ~]# tar zxf inotify-tools-3.14.tar.gz 
[root@localhost ~]# cd inotify-tools-3.14
[root@localhost inotify-tools-3.14]# ./configure && make && make install

以监控/var/www/html为例,先执行inotifywait命令,然后在另一终端在该目录下修改、创建、移动、删除等,查看屏幕输出结果。inotifywait可以监控modify(修改)、create(创建)、move(移动)、delete(删除)、attrib(属性更改)等。
终端一:

[root@localhost html]# inotifywait -mrq -e modify,create,move,delete /var/www/html/
/var/www/html/ CREATE test3
/var/www/html/ MODIFY test2
/var/www/html/ DELETE test

终端二:

[root@localhost html]# touch test3
[root@localhost html]# cat >> /var/www/html/test2 << end
> 123
> end
[root@localhost html]# rm -rf test

其中终端一选项-mrq -e为:-e指定监控到事件,-m持续监控,-r递归整个目录,-q简化输出信息。


3.编写触发同步脚本。
使用inotifywait输出到监控结果中,每行记录依次为目录、事件、文件。因此可以识别变动情况。

vim /opt/inotify_rsync.sh

 

#!/bin/bash 
inotify_cmd="inotifywait -mrq -e modify,create,move,delete,attrib /var/www/html/" 
rsync_cmd="rsync -avz --delete /var/www/html/  [email protected]:/var/www/html/" 
 
$inotify_cmd | while read DIRECTORY EVENT FILE 
do 
        $rsync_cmd 
done

保存退出
可以编写多个rsync_cmd1、2、3、.....归属不同客户机,在循环do里增加相应变量,就可以在服务器发生变化,多台客户机自动增删改。

chmod a+x /opt/inotify_rsync.sh

开机实现监控,并触发同步

echo "/opt/inotify_rsync.sh" >>/etc/rc.local


你可能感兴趣的:(ssh,rsync,inotify实时同步)