1. rsync特性
rsync
支持很多特性:
- 可以镜像保存整个目录树和文件系统
- 可以很容易做到保持原来文件的权限、时间、软硬链接等等
- 无须特殊权限即可安装
- 快速:第一次同步时
rsync
会复制全部内容,但在下一次只传输修改过的文件。rsync
在传输数据的过程中可以实行压缩及解压缩操作,因此可以使用更少的带宽 - 安全:可以使用
scp
、ssh
等方式来传输文件,当然也可以通过直接的socket
连接 - 支持匿名传输,以方便进行网站镜像
rsyn命令
//rsync常用选项:
-a, --archive //归档
-v, --verbose //啰嗦模式
-q, --quiet //静默模式
-r, --recursive //递归
-p, --perms //保持原有的权限属性
-z, --compress //在传输时压缩,节省带宽,加快传输速度
--delete //在源服务器上做的删除操作也会在目标服务器上同步
rsync+inotify
rsync
与传统的cp
、tar
备份方式相比,rsync
具有安全性高、备份迅速、支持增量备份等优点,通过rsync
可以解决对实时性要求不高的数据备份需求,例如定期的备份文件服务器数据到远端服务器,对本地磁盘定期做数据镜像等。
随着应用系统规模的不断扩大,对数据的安全性和可靠性也提出的更好的要求,rsync
在高端业务系统中也逐渐暴露出了很多不足,首先,rsync
同步数据时,需要扫描所有文件后进行比对,进行差量传输。如果文件数量达到了百万甚至千万量级,扫描所有文件将是非常耗时的。而且正在发生变化的往往是其中很少的一部分,这是非常低效的方式。其次,rsync
不能实时的去监测、同步数据,虽然它可以通过linux
守护进程的方式进行触发同步,但是两次触发动作一定会有时间差,这样就导致了服务端和客户端数据可能出现不一致,无法在应用故障时完全的恢复数据。基于以上原因,rsync
+inotify
组合出现了!
Inotify
是一种强大的、细粒度的、异步的文件系统事件监控机制,linux
内核从2.6.13
起,加入了Inotify
支持,通过Inotify
可以监控文件系统中添加、删除,修改、移动等各种细微事件,利用这个内核接口,第三方软件就可以监控文件系统下文件的各种变化情况,而inotify-tools
就是这样的一个第三方软件。
在前面有讲到,rsync可以实现触发式的文件同步,但是通过crontab
守护进程方式进行触发,同步的数据和实际数据会有差异,而inotify
可以监控文件系统的各种变化,当文件有任何变动时,就触发rsync
同步,这样刚好解决了同步数据的实时性问题。
环境说明:
服务器类型 | IP地址 | 应用 | 操作系统 |
源服务器 | 192.168.80.22 | rsync inotify-tools 脚本 | centos8/redhat8 |
目标服务器 | 192.168.80.20 | rsync | centos8/redhat8 |
安装rsync
目标主机localhost
[root@localhost ~]# vim /etc/selinux/config
[root@localhost ~]# setenforce 0
[root@localhost ~]# systemctl disable --now firewalld
提前关闭防火墙selinux
[root@localhost ~]# yum -y install rsync
//安装
[root@localhost ~]# yum -y install rsync-daemon.noarch
//centous8中要安装他的依赖包
[root@localhost ~]# vim /etc/rsyncd.conf
log file = /var/log/rsyncd.log
pidfile = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
secrets file = /etc/rsync.pass
[202289]
path = /root/wsm
comment = sync etc from client
uid = root
gid = root
port = 873
ignore errors
use chroot = no
read only = no
list = no
max connections = 200
timeout = 600
auth users = admin
hosts allow = 192.168.80.20 # 允许进行数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开
hosts deny = 192.168.1.1 # 禁止数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开
//修改他的配置文件
//创建用户认证文件
[root@localhost ~]# echo 'admin:123456' > /etc/rsync.pass
[root@localhost ~]# cat /etc/rsync.pass
admin:123456
//设置文件权限
[root@localhost ~]# chmod 600 /etc/rsync*
[root@localhost ~]# ll /etc/rsync*
-rw-------. 1 root root 802 Aug 9 22:45 /etc/rsyncd.conf
-rw-------. 1 root root 13 Aug 9 22:47 /etc/rsync.pass
//启动rsync服务并设置开机自启动
[root@localhost ~]# systemctl start rsyncd
[root@localhost ~]# systemctl enable rsyncd
[root@localhost ~]# systemctl start rsyncd
[root@localhost ~]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
LISTEN 0 5 0.0.0.0:873 0.0.0.0:*
LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
LISTEN 0 5 [::]:873 [::]:*
LISTEN 0 128 [::]:22 [::]:*
[root@localhost test]# pwd
/root/wsm/test
//建一个传送目录
在源服务器上node1做以下操作
[root@node1 ~]# systemctl disable --now firewalld
Removed /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
[root@node1 ~]# vim
[root@node1 ~]# vim /etc/selinux/config
//关防火墙selinux
[root@node1 yum.repos.d]# ls
CentOS-Base.repo epel-modular.repo epel.repo epel-testing-modular.repo epel-testing.repo
//下载阿里云和epel源
[root@node1 ~]# yum -y install rsync
//安装
[root@node1 ~]# echo '123456' > /etc/rsync.pass
[root@node1 ~]# cat /etc/rsync.pass
123456
//创建认证密码文件
[root@node1 ~]# chmod 600 /etc/rsync.pass
[root@node1 ~]# ll /etc/rsync.pass
-rw-------. 1 root root 7 Aug 9 17:56 /etc/rsync.pass
//设置文件权限,只设置文件所有者具有读取、写入权限即可
测试服务器同步服务端
[root@node1 ~]# mkdir -pv /root/etc/runtime
mkdir: created directory '/root/etc'
mkdir: created directory '/root/etc/runtime'
//创建测试目录runtime
[root@node1 ~]# rsync -avH --port 873 --progress --delete /root/etc/ admin@192.168.80.20::202289 --password-file=/etc/rsync.pass
sending incremental file list
./
runtime/
sent 80 bytes received 27 bytes 10.19 bytes/sec
total size is 0 speedup is 0.00
//开始同步
[root@localhost wsm]# ls
runtime
//在lacalhost主机上有一个相同的目录说明同步成功
[root@node1 ~]# cd etc/runtime/
[root@node1 runtime]# touch xixi
[root@node1 runtime]# ls
xixi
//我们进到同步目录touch文件
[root@node1 ~]# rsync -avH --port 873 --progress --delete /root/etc/ admin@192.168.80.20::202289 --password-file=/etc/rsync.pass
sending incremental file list
runtime/
runtime/xixi
0 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=0/3)
sent 143 bytes received 47 bytes 380.00 bytes/sec
total size is 0 speedup is 0.00
//在执行同步命令
[root@localhost wsm]# cd runtime/
[root@localhost runtime]# ls
xixi
//只要发生改变 再一次同步服务端一定会被同步
配置实时同步
我们在服务器node1主机上配置安装
[root@node1 ~]# yum -y install inotify-tools
//安装inotify-tools,才能实现实时同步
编写脚本
[root@node1 ~]# mkdir /scripts
[root@node1 ~]# touch /scripts/inotify.sh
[root@node1 ~]# chmod 755 /scripts/inotify.sh
[root@node1 ~]# ll /scripts/inotify.sh
-rwxr-xr-x. 1 root root 0 Aug 9 18:07 /scripts/inotify.sh
//创建脚本目录修改可执行权限
[root@node1 ~]# cat /scripts/inotify.sh
host=192.168.80.20
src=/root/etc/runtime
des=202289
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@node1 ~]# nohup bash /scripts/inotify.sh &
[3] 10890
[root@node1 ~]# nohup: ignoring input and appending output to 'nohup.out'
[root@node1 ~]# ps -ef|grep inotify
root 10864 1576 0 18:17 pts/0 00:00:00 bash /scripts/inotify.sh
root 10865 10864 0 18:17 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 /root/etc/runtime
root 10892 10890 0 18:27 pts/0 00:00:00 bash /scripts/inotify.sh
root 10895 1576 0 18:29 pts/0 00:00:00 grep --color=auto inotify
//执行脚本
测试实时同步
[root@node1 etc]# ls
321 runtime
//服务器创建321文件
[root@localhost wsm]# ls
321 runtime
//目标查看
[root@node1 etc]# cd runtime/
[root@node1 runtime]# ls
xixi
[root@node1 runtime]# rm -f xixi
//删除
[root@localhost wsm]# cd runtime/
[root@localhost runtime]# ls
[root@localhost runtime]#
设置脚本开机自启
[root@node1 runtime]# rm -f xixi
[root@node1 runtime]# cd
[root@node1 ~]# chmod +x /etc/rc.d/rc.local
[root@node1 ~]# ll /etc/rc.d/rc.local
-rwxr-xr-x. 1 root root 474 Feb 11 23:37 /etc/rc.d/rc.local
[root@node1 ~]# echo 'nohup /bin/bash /scripts/inotify.sh' >> /etc/rc.d/rc.local
[root@node1 ~]# tail /etc/rc.d/rc.local
#
# In contrast to previous versions due to parallel execution during boot
# this script will NOT be run after all other services.
#
# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
# that this script will be executed during boot.
touch /var/lock/subsys/local
nohup /bin/bash /scripts/inotify.sh