rsync
文章目录
1. rsync简介
rsync
是linux
系统下的数据镜像备份工具。使用快速增量备份工具Remote Sync
可以远程同步,支持本地复制,或者与其他SSH
、rsync
主机同步。
2. rsync特性
rsync
支持很多特性:
- 可以镜像保存整个目录树和文件系统
- 可以很容易做到保持原来文件的权限、时间、软硬链接等等
- 无须特殊权限即可安装
- 快速:第一次同步时
rsync
会复制全部内容,但在下一次只传输修改过的文件。rsync
在传输数据的过程中可以实行压缩及解压缩操作,因此可以使用更少的带宽 - 安全:可以使用
scp
、ssh
等方式来传输文件,当然也可以通过直接的socket
连接 - 支持匿名传输,以方便进行网站镜像
3. rsync的ssh认证协议
rsync
命令来同步系统文件之前要先登录remote
主机认证,认证过程中用到的协议有2种:
ssh
协议rsync
协议
rsync server`端不用启动`rsync`的`daemon`进程,只要获取`remote host`的用户名和密码就可以直接`rsync`同步文件 `rsync server`端因为不用启动`daemon`进程,所以也不用配置文件`/etc/rsyncd.conf
ssh
认证协议跟scp
的原理是一样的,如果在同步过程中不想输入密码就用ssh-keygen -t rsa
打通通道
4. rsync命令
Rsync的命令格式常用的有以下三种:
rsync [OPTION]… SRC DEST
rsync [OPTION]… SRC [USER@]HOST:DEST
rsync [OPTION]… [USER@]HOST:SRC DEST
对应于以上三种命令格式,rsync有三种不同的工作模式:
1)拷贝本地文件。当SRC和DES路径信息都不包含有单个冒号":"分隔符时就启动这种工作模式。如:
[root@target ~]# ls
anaconda-ks.cfg best nohup.out
[root@target ~]# rsync -a best dest
[root@target ~]# ll
总用量 12
-rw-------. 1 root root 1023 9月 30 05:21 anaconda-ks.cfg
-rw-r--r--. 1 root root 0 10月 11 07:26 best
-rw-r--r--. 1 root root 0 10月 11 07:26 dest
-rw-------. 1 root root 7128 10月 11 04:35 nohup.out
2)使用一个远程shell程序(如rsh、ssh)来实现将本地机器的内容拷贝到远程机器。当DST路径地址包
含单个冒号":"分隔符时启动该模式。如:
[root@target ~]# rsync -avz best root@192.168.240.40:/opt/
root@192.168.240.40's password:
sending incremental file list
best
sent 83 bytes received 35 bytes 47.20 bytes/sec
total size is 0 speedup is 0.00
[root@target ~]# ssh root@192.168.240.40 'ls -l /opt/'
root@192.168.240.40's password:
总用量 0
-rw-r--r--. 1 root root 0 10月 11 07:26 best
3)使用一个远程shell程序(如rsh、ssh)来实现将远程机器的内容拷贝到本地机器。当SRC地址路径
包含单个冒号":"分隔符时启动该模式。如:
[root@target ~]# rsync -avz root@192.168.240.40:/etc/yum.repos.d /root/
root@192.168.240.40's password:
receiving incremental file list
yum.repos.d/
yum.repos.d/163.repo
yum.repos.d/CentOS-Stream-AppStream.repo
yum.repos.d/CentOS-Stream-BaseOS.repo
yum.repos.d/CentOS-Stream-Debuginfo.repo
yum.repos.d/CentOS-Stream-Extras.repo
yum.repos.d/CentOS-Stream-HighAvailability.repo
yum.repos.d/CentOS-Stream-Media.repo
yum.repos.d/CentOS-Stream-PowerTools.repo
yum.repos.d/CentOS-Stream-RealTime.repo
sent 199 bytes received 4,047 bytes 943.56 bytes/sec
total size is 6,725 speedup is 1.58
[root@target ~]# ls
anaconda-ks.cfg best dest nohup.out yum.repos.d
[root@target ~]# ls yum.repos.d/
163.repo CentOS-Stream-HighAvailability.repo
CentOS-Stream-AppStream.repo CentOS-Stream-Media.repo
CentOS-Stream-BaseOS.repo CentOS-Stream-PowerTools.repo
CentOS-Stream-Debuginfo.repo CentOS-Stream-RealTime.repo
CentOS-Stream-Extras.repo
4.rsync常用选项
-a , --archive //归档
-v , --verbose //啰嗦模式
-q , --quiet //静默模式
-r , --recursive //递归
-p , --perms //保持原有的权限属性
-z , --compress //在传输时压缩,节省带宽,加快传输速度
--delete //在源服务器上做的删除操作也会在目标服务器上同步
5.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.240.70 | rsync inotify-tools 脚本 | centos7/redhat7 |
目标服务器 | 192.168.240.40 | rsync | centos7/redhat7 |
需求:
- 把源服务器上/etc目录实时同步到目标服务器的/tmp/下
在目标服务器上做以下操作:
##关闭防火墙跟selinux
[root@source ~]# systemctl stop firewalld.service
[root@source ~]# setenforce 0
##安装rsync服务端软件
[root@source ~]# yum -y install rsync
[root@source ~]# yum -y install rsync-daemon
##设置rsyncd.conf配置文件
[root@source ~]# vim /etc/rsyncd.conf
[root@source ~]# cat /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
[etc_from_client]
path = /tmp/
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.240.70 # 允许进行数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开
hosts deny = 192.168.240.110 # 禁止数据同步的客户端IP地址,可以设置多个,用英文状态下逗号隔开
##创建用户认证
[root@source ~]# vim /etc/rsync.pass
[root@source ~]# cat /etc/rsync.pass
admin:123456
##设置文件权限
[root@source ~]# ll /etc/rsync*
-rw-------. 1 root root 648 10月 11 03:41 /etc/rsyncd.conf
-rw-------. 1 root root 13 10月 11 03:42 /etc/rsync.pass
##启动并设置开机自启
[root@source ~]# systemctl start rsyncd
[root@source ~]# systemctl enable rsyncd
Created symlink /etc/systemd/system/multi-user.target.wants/rsyncd.service → /usr/lib/systemd/system/rsyncd.service.
[root@source ~]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
LISTEN 0 5 0.0.0.0:873 0.0.0.0:*
LISTEN 0 128 *:80 *:*
在源服务器上做以下操作
##关闭防火墙与selinx
[root@target ~]# systemctl stop firewalld.service
[root@target ~]# setenforce 0
##下载源
[root@target ~]# yum -y install epel-release
##安装rsync服务端软件(只需要安装,不需要启动和配置)
[root@target ~]# yum -y install rsync
##创建认证密码
[root@target ~]# vim /etc/rsync.pass
[root@target ~]# cat /etc/rsync.pass
123456
##设置文件权限
[root@target ~]# chmod 600 /etc/rsync.pass
[root@target ~]# ll /etc/rsync.pass
-rw-------. 1 root root 7 10月 11 04:02 /etc/rsync.pass
##在源服务器上创建测试目录,然后在源服务器运行以下命令
[root@target ~]# mkdir -pv /root/etc/test
mkdir: 已创建目录 '/root/etc'
mkdir: 已创建目录 '/root/etc/test'
[root@target ~]# rsync -avH --port 873 --progress --delete /root/etc/ admin@192.168.240.40::etc_from_client --password-file=/etc/rsync.passsending incremental file list
deleting vmware-root_948-2688554130/
deleting vmware-root_939-4022308693/
deleting vmware-root_936-2697532681/
deleting vmware-root_932-2722632322/
deleting vmware-root_925-3988621690/
deleting vmware-root_923-3988752765/
deleting vmware-root_919-4013854454/
deleting vmware-root_912-2697663791/
deleting systemd-private-3bede03fece9469e9934307db641145e-httpd.service-lh4pwh/tmp/
deleting systemd-private-3bede03fece9469e9934307db641145e-httpd.service-lh4pwh/
deleting systemd-private-3bede03fece9469e9934307db641145e-chronyd.service-VK23O6/tmp/
deleting systemd-private-3bede03fece9469e9934307db641145e-chronyd.service-VK23O6/
deleting .font-unix/
deleting .XIM-unix/
deleting .X11-unix/
deleting .Test-unix/
deleting .ICE-unix/
deleting ks-script-m39rfgpj
deleting abc
./
test/
sent 75 bytes received 684 bytes 1,518.00 bytes/sec
total size is 0 speedup is 0.00
##查看服务器是否支持inotify
##如果有这三个max开头的文件则表示服务器内核支持inotify
[root@target ~]# ll /proc/sys/fs/inotify/
总用量 0
-rw-r--r--. 1 root root 0 10月 11 04:10 max_queued_events
-rw-r--r--. 1 root root 0 10月 11 04:10 max_user_instances
-rw-r--r--. 1 root root 0 10月 11 04:10 max_user_watches
##安装inotify-tools
[root@target ~]# yum -y install make gcc gcc-c++
[root@target ~]# yum -y install inotify-tools
##创建脚本并编写脚本
[root@target ~]# mkdir /scripts
[root@target ~]# vim /scripts/inotify.sh
[root@target ~]# cat /scripts/inotify.sh
host=192.168.240.4
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@target ~]# chmod +x /scripts/inotify.sh
##启动脚本
[root@target scripts]# nohup ./inotify.sh &
[4] 147331
[root@target scripts]# nohup: 忽略输入并把输出追加到'nohup.out'
[root@target scripts]# ps -ef|grep inotify
root 141314 26390 0 04:21 pts/0 00:00:00 bash /scripts/inotify.sh
root 141315 141314 0 04:21 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 141316 141314 0 04:21 pts/0 00:00:00 bash /scripts/inotify.sh
##在源服务器上生成一个新文件
[root@target ~]# ls /etc/udev/
hwdb.bin hwdb.d rules.d udev.conf
[root@target ~]# echo 'hello lq!' > /etc/udev/test
##查看inotify 生成的日志(从日志上可以看到,我们生成了一个test文件,并且添加了内容到其里面)
[root@target ~]# tail /tmp/rsync.log
20211011 04:29 /etc/udev/testCREATE was rsynced
20211011 04:29 /etc/udev/testCREATE was rsynced
6.设置脚本开机自启
[root@target ~]# vim /etc/rc.d/rc.local
[root@target ~]# cat /etc/rc.d/rc.local
#!/bin/bash
# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
#
# It is highly advisable to create own systemd services or udev rules
# to run scripts during boot instead of using this file.
#
# 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
7.到目标服务器上去查看是否把新生成的文件自动传上去了
[root@source tmp]# ls
etc systemd-private-908fe6665d9f4710b2894a5ffc7772e1-chronyd.service-bgYKQ7 test vmware-root_936-2697532681
[root@source tmp]# cat etc/test
hello lq!