在源服务器上做以下操作:
1.关闭防火墙和selinux
[root@hejie ~]# systemctl stop firewalld
[root@hejie ~]# systemctl disable firewalld
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
[root@hejie ~]# setenforce 0
[root@hejie ~]# sed -ri 's/^(SELINUX=).*/\1disabled/g' /etc/sysconfig/selinux
2.配置yum源
[root@hejie yum.repos.d]# wget CentOS7-Base-163.repo
[root@hejie yum.repos.d]# sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@hejie yum.repos.d]# sed -i 's/^enabled=.*/enabled=1/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@hejie ~]# yum -y install epel-release
3.安装rsync服务端软件,只需安装,不要启动,不需要配置
[root@hejie ~]# yum -y install rsync
4.创建认证密码文件,并设置权限,设置文件所有者具有读取、写入权限即可
[root@hejie ~]# echo '123456' > /etc/rsync.pass
[root@hejie ~]# cat /etc/rsync.pass
123456
[root@hejie ~]# chmod 600 /etc/rsync.pass
[root@hejie ~]# ll /etc/rsync.pass
-rw-------. 1 root root 7 Aug 16 16:44 /etc/rsync.pass
5.在源服务器上创建测试目录,并运行以下命令
[root@hejie ~]# mkdir -pv /root/etc/test
mkdir: created directory ‘/root/etc’
mkdir: created directory ‘/root/etc/test’
[root@hejie ~]# rsync -avH --port 873 --progress --delete /root/etc/ admin@192.168.56.12::etc_from_client --password-file=/etc/rsync.pass
6.运行完成后,在目标服务器上查看,在/heyuanjie目录下有test目录,说明数据同步成功
[root@linuxidc ~]# cd /heyuanjie
[root@linuxidc heyuanjie]# ls
test
7.安装inotify-tools工具,实时触发rsync进行同步
//查看服务器内核是否支持inotify
[root@hejie ~]# ll /proc/sys/fs/inotify/
total 0
-rw-r--r--. 1 root root 0 Aug 16 16:57 max_queued_events
-rw-r--r--. 1 root root 0 Aug 16 16:57 max_user_instances
-rw-r--r--. 1 root root 0 Aug 16 16:57 max_user_watches
如果有以上三个max开头的文件则表示服务器内核支持inotify
//安装inotify-tools
[root@hejie ~]# yum -y install make gcc gcc-c++
[root@hejie ~]# yum -y install inotify-tools
//写同步脚本,让脚本自动去检测我们制定的目录下文件发生的变化,然后再执行rsync的命令把它同步到我们的服务器端去
[root@hejie ~]# mkdir /scripts
[root@hejie ~]# touch /scripts/inotify.sh
[root@hejie ~]# chmod 755 /scripts/inotify.sh
[root@hejie ~]# vi /scripts/inotify.sh
host=192.168.56.12 //目标服务器的ip(备份服务器)
src=/etc //在源服务器上所要监控的备份目录(可自定义,但必须存在)
des=etc_from_client //自定义模块名,需要与目标服务器上定义的同步名称一致
password=/etc/rsync.pass //执行数据同步的密码文件
user=admin //执行数据同步的用户名
inotifywait=/usr/bin/inotifywait
$inotifywait -mrq --timefmt '%Y%m%d %H:%M' --format '%T %w%f%e' -e modify,delete,create,attrib $src \
| while read files ; do
rsync -avzP --delete --timeout=100 --password-file=${password} $src $user@$host::$des
echo "${files} was rsynced" >>/tmp/rsync.log 2>&1
done
//启动脚本
[root@linuxidc ~]# nohup bash /scripts/inotify.sh &
[1] 8784
[root@linuxidc ~]# nohup: ignoring input and appending output to ‘nohup.out’
[root@linuxidc ~]# ps -ef|grep inotify
root 8784 8528 0 00:46 pts/0 00:00:00 bash /scripts/inotify.sh
root 8785 8784 0 00:46 pts/0 00:00:00 /usr/bin/inotifywait -mrq --timefmt %Y%m%d %H:%M --format %T %w%f%e -e modify,delete,create,attrib /etc
root 8786 8784 0 00:46 pts/0 00:00:00 bash /scripts/inotify.sh
root 8788 8528 0 00:47 pts/0 00:00:00 grep --color=auto inotify
//在源服务器上生成一个新文件
[root@linuxidc ~]# mkdir /etc/aaa
会触发同步到目标服务器上的/heyuanjie/etc中
[root@linuxidc ~]# cd /heyuanjie/
[root@linuxidc heyuanjie]# ls
etc test
[root@linuxidc heyuanjie]# cd etc/
[root@linuxidc etc]# ls
aaa
//查看inotify生成的日志,可以看到生成了一个aaa目录文件
[root@linuxidc ~]# tail /tmp/rsync.log
20180817 00:49 /etc/aaaCREATE,ISDIR was rsynced