rsync:Remote Sync,是类Unix系统下的数据镜像备份工具。通过rsync可以解决对实时性要求不高的数据进行备份需求;例如:指定的备份文件服务器数据到指定的远端服务器,对本地磁盘定期做数据镜像等。
inotify:inotify是一种文件变化通知机制;通过inotify可以在监控文件系统中添加、删除、修改、移动等各种操作。
准备环境:
主服务器(inotify-Master) IP:172.18.42.201从服务器(inotify-Slave) IP:172.18.42.200
一、部署inotify-Slave
1、安装rsync程序
[root@inotify-slave ~]# yum install rsync
2、创建rsync用户
[root@inotify-slave ~]# useradd -s /bin/nologin -M rsync
3、创建rsync工作模块的目录
[root@inotify-slave ~]# mkdir /mydata/ ##创建rsync工作模式的模块目录
[root@inotify-slave ~]# chown rsync.rsync /mydata/ ##更改属主、主组;使rsync用户有权限更改数据
[root@inotify-slave ~]# ls -ld /mydata/
drwxr-xr-x 2 rsync rsync 6 May 19 21:02 /mydata/
4、配置虚拟用户的密码文件/etc/rsync.password
[root@inotify-slave ~]# vim /etc/rsync.password
linuxidc:linux ##“linuxidc”为虚拟用户用户名;“linux”为虚拟用户密码
[root@inotify-slave ~]# chmod 600 /etc/rsync.password ##为密码文件增加安全性
[root@inotify-slave ~]# ll /etc/rsync.password
-rw------- 1 root root 12 May 18 21:54 /etc/rsync.password
5、配置rsync配置文件/etc/rsyncd.conf
[root@inotify-slave ~]# vim /etc/rsyncd.conf
uid = rsync
gid = rsync
user chroot = no
max connections = 200
timeout = 300
read only = no
[rsync] ##定义模块名,名字可随意
path = /mydata ##指定rsync用户的模块目录
auth users = linuxidc ##指定虚拟用户名
secrets file = /etc/rsync.password ##指定虚拟用户的密码文件路径
ignore errors ##表示忽略错误
6、启动rsync服务
[root@inotify-slave ~]# rsync --daemon --config=/etc/rsyncd.conf ##rsync监听在tcp协议的873端口
[root@inotify-slave ~]# ps aux | grep rsync
root 1330 0.0 0.0 114640 328 ? Ss 21:13 0:00 rsync --daemon --config=/etc/rsyncd.conf
root 1338 0.0 0.1 112644 952 pts/0 R+ 21:13 0:00 grep --color=auto rsync
二、配置inotify-master的密码文件
1、配置虚拟用户的密码文件
[root@inotify-master ~]# echo "linux" > /etc/rsync.password
[root@inotify-master ~]# cat /etc/rsync.password
linux ##注意:只需要写出虚拟用户的密码;不用写出用户名
[root@inotify-master ~]# chmod 600 /etc/rsync.password
[root@inotify-master ~]# ls -ld /etc/rsync.password
-rw------- 1 root root 6 May 19 21:18 /etc/rsync.password
三、通过inotify-master测试推送文件
[root@inotify-master ~]# echo "Hello Word" > linuxidc.txt
[root@inotify-master ~]# rsync -avz linuxidc.txt lweim@172.18.42.200::rsync --password-file=/etc/rsync.password
sending incremental file list
linuxidc.txt
sent 81 bytes received 27 bytes 216.00 bytes/sec
total size is 11 speedup is 0.10
四、检查inotify-slave的工作模块目录
[root@inotify-slave ~]# ll /mydata/
total 4
-rw-r--r-- 1 rsync rsync 11 May 19 21:21 linuxidc.txt
[root@inotify-slave ~]# cat /mydata/linuxidc.txt
Hello Word ##推送成功
五、部署rsync-master
1、通过inofity源码包编译安装
[root@inotify-master ~]# tar -xf inotify-tools-3.13.tar
[root@inotify-master ~]# cd inotify-tools-3.13/
[root@inotify-master inotify-tools-3.13]# ./ configure --prefix=/usr/local/inotify ##指明安装路径
[root@inotify-master ~]# make -j 4 && make install
2、编写监控脚本
12345678910111213141516171819202122 [root@inotify-master ~]# vim inotify.sh
#!/bin/bash
host=172.18.42.200 ##指明inotify-slave的ip地址
src=/www/linuxidc ##本机监控的目录,可随意定义
dst=rsync ##inotify-slave的rsync用户的模块目录
user=linuxidc ##虚拟用户的用户名
passfile=/etc/rsync.password ##调用本地的密码文件
inotify_home=/usr/local/inotify ##指明inotify的安装目录
if [ ! -e "$src" ] || [ ! -e "${inotify_home}/bin/inotifywait" ] || [ ! -e "/usr/bin/rsync" ] || [ ! -e "/etc/rsync.password" ]; then
#if [ ! -e "${inotify_home}/bin/inotifywait" ] || [ ! -e "/usr/bin/rsync" ] || [ ! -e "/etc/rsync.password" ]; then
echo "Check File and Folder"
exit 1
fi
${inotify_home}/bin/inotifywait -mrq -e close_write,delete,create,attrib $src | while read file
do
cd $src && rsync -arvz -P ./ --timeout=100 $user@$host::$dst --password-file=$passfile &>/dev/null
done
exit 0