1.rsync简介
rsync是Linux系统的一个备份工具,既可以实现远程备份,也能实现本地备份,它可以实现快速增量备份,也可以叫做主机同步。
rsync只能备份很多个小文件,例如图片文件,配置文件等,而像数据库这样的大文件,则需要其他的备份工具才可以完成。
2.rsync特性
- 可以镜像保存整个目录树和文件系统;
- 可以很容易做到保持原来文件的权限、时间、软硬链接等;
- 无须特殊权限即可安装;
- 优化的流程,文件传输效率高;
- 可以使用rsh、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方式进行认证
//这种方式默认是省略了 -e ssh 的,与下面等价:
rsync -avz /SRC -e ssh root@[]IP地址:/DEST
-a //文件宿主变化,时间戳不变
-z //压缩数据传输
//当遇到要修改端口的时候,我们可以:
rsync -avz /SRC -e "ssh -p2222" root@[IP地址]:/DEST
//修改了ssh 协议的端口,默认是22
4. rsync命令
rsync 是一个功能非常强大的工具,其命令也有很多功能选项。rsync 的命令格式为:
1)本地使用:
rsync [OPTION…] SRC… [DEST]
2)通过远程 Shell 使用:
拉: rsync [OPTION…] [USER@]HOST:SRC… [DEST]
推: rsync [OPTION…] SRC… [USER@]HOST:DEST
3)访问 rsync 服务器:
拉: rsync [OPTION…] [USER@]HOST::SRC… [DEST]
推: rsync [OPTION…] SRC… [USER@]HOST::DEST
拉: rsync [OPTION…] rsync://[USER@]HOST[:PORT]/SRC… [DEST]
推: rsync [OPTION…] SRC… rsync://[USER@]HOST[:PORT]/DEST
其中:
SRC: 是要复制的源位置
DEST: 是复制目标位置
若本地登录用户与远程主机上的用户一致,可以省略 USER@
使用远程 shell 同步时,主机名与资源之间使用单个冒号“:”作为分隔符
使用 rsync 服务器同步时,主机名与资源之间使用两个冒号“::”作为分隔符
当访问 rsync 服务器时也可以使用 rsync:// URL
“拉”复制是指从远程主机复制文件到本地主机
“推”复制是指从本地主机复制文件到远程主机
当进行“拉”复制时,若指定一个 SRC 且省略 DEST,则只列出资源而不进行复制
下面列出常用选项:
选项 | 说明 |
---|---|
-a, ––archive | 归档模式,表示以递归方式传输文件,并保持所有文件属性,等价于 -rlptgoD (注意不包括 -H) |
-r, ––recursive | 对子目录以递归模式处理 |
-l, ––links | 保持符号链接文件 |
-H, ––hard-links | 保持硬链接文件 |
-p, ––perms | 保持文件权限 |
-t, ––times | 保持文件时间信息 |
-g, ––group | 保持文件属组信息 |
-o, ––owner | 保持文件属主信息 (super-user only) |
-D | 保持设备文件和特殊文件 (super-user only) |
-z, ––compress | 在传输文件时进行压缩处理 |
––delete | 删除那些接收端还有而发送端已经不存在的文件 |
––progress | 在传输时显示传输过程 |
-P | 等价于 ––partial ––progress |
-v, ––verbose | 详细输出模式 |
-q, ––quiet | 精简输出模式 |
-h, ––human-readable | 输出文件大小使用易读的单位(如,K,M等) |
-n, ––dry-run | 显示哪些文件将被传输 |
––version | 打印版本信息 |
––help | 显示帮助信息 |
- 若使用普通用户身份运行 rsync 命令,同步后的文件的属主将改变为这个普通用户身份。
- 若使用超级用户身份运行 rsync 命令,同步后的文件的属主将保持原来的用户身份。
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.233.131 | rsync inotify-tools 脚本 | centos7/redhat7 |
目标服务器 | 192.168.233.129 | rsync | centos7/redhat7 |
需求:
- 把源服务器上/etc目录实时同步到目标服务器的/zml/下
在目标服务器上做以下操作:
//关闭防火墙与SELINUX
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# 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@localhost ~]# setenforce 0
//安装rsync服务端软件
[root@localhost ~]# yum -y install rsync
//设置rsyncd.conf配置文件
[root@localhost ~]# vim /etc/rsyncd.conf
[root@localhost ~]# tail -18 /etc/rsyncd.conf
# path = /home/ftp
# comment = ftp export area
log file = /var/log/rsync.log //日志文件位置,启动rsync后自动产生这个文件,无需提前创建
pidfile = /var/run/rsync.pid //pid文件的存放位置
lock file = /var/run/rsync.lock //支持max connections参数的锁文件
secrets file = /etc/rsync.password //用户认证配置文件,里面保存用户名称和密码,必须手动创建这个文件
[etc_from_client] //自定义同步名称
path = /zml/ //rsync服务端数据存放路径,客户端的数据将同步至此目录
uid = 0 //设置rsync运行权限为root
gid = 0 //设置rsync运行权限为root
port = 873 //默认端口
ignore errors //表示出现错误忽略错误
use chroot = no //默认为true,修改为no,增加对目录文件软连接的备份
read only = no //设置rsync服务端为读写权限
list = no //不显示rsync服务端资源列表
timeout = 600 //设置超时时间
auth users = zqq /执行数据同步的用户名,可以设置多个,用英文状态下逗号隔开
//创建用户认证文件
[root@localhost ~]# vim /etc/rsync.password
[root@localhost ~]# cat /etc/rsync.password
zqq:123456
//设置文件权限
[root@localhost ~]# chmod 600 /etc/rsync.password
[root@localhost ~]# ll /etc/rsync.password -d
-rw-------. 1 root root 11 2月 19 14:42 /etc/rsync.password
//启动rsync服务并设置开机自启动
[root@localhost ~]# systemctl start rsyncd
[root@localhost ~]# systemctl enable rsyncd
Created symlink from /etc/systemd/system/multi-user.target.wants/rsyncd.service to /usr/lib/systemd/system/rsyncd.service.
[root@localhost ~]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 *:22 *:*
LISTEN 0 100 127.0.0.1:25 *:*
LISTEN 0 5 *:873 *:*
LISTEN 0 128 :::22 :::*
LISTEN 0 100 ::1:25 :::*
LISTEN 0 5 :::873 :::*
[root@localhost ~]#
在源服务器上做以下操作:
//关闭防火墙与SELINUX
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# 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@localhost ~]# setenforce 0
//配置yum源
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
--2019-02-19 14:46:07-- http://mirrors.163.com/.help/CentOS7-Base-163.repo
正在解析主机 mirrors.163.com (mirrors.163.com)... 59.111.0.251
正在连接 mirrors.163.com (mirrors.163.com)|59.111.0.251|:80... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:1572 (1.5K) [application/octet-stream]
正在保存至: “CentOS7-Base-163.repo”
100%[==============================================================================================>] 1,572 --.-K/s 用时 0s
2019-02-19 14:46:07 (63.6 MB/s) - 已保存 “CentOS7-Base-163.repo” [1572/1572])
[root@localhost yum.repos.d]# sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@localhost yum.repos.d]# sed -i 's/^enabled=.*/enabled=1/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@localhost yum.repos.d]# yum -y install epel-release
//安装rsync服务端软件,只需要安装,不要启动,不需要配置
[root@localhost yum.repos.d]# yum -y install rsync
//创建认证密码文件
[root@localhost ~]# vim /etc/rsync.password
[root@localhost ~]# cat /etc/rsync.password
123456
//设置文件权限,只设置文件所有者具有读取、写入权限即可
[root@localhost ~]# chmod 600 /etc/rsync.password
[root@localhost ~]# ll /etc/rsync.password -d
-rw-------. 1 root root 7 2月 19 14:54 /etc/rsync.password
//在源服务器上创建测试目录,然后在源服务器运行以下命令
[root@localhost ~]# mkdir /etc/test
[root@localhost zml]# ls |grep test
[root@localhost ~]# rsync -avH --port 873 --progress --delete /root/etc/ zqq@192.168.233.131::etc_from_client --password-file=/etc/rsync.password
[root@localhost zml]# ls |grep test
test
//运行完成后,在目标服务器上查看,在/zml目录下有test目录,说明数据同步成功
//安装inotify-tools工具,实时触发rsync进行同步
//查看服务器内核是否支持inotify
//如果有这三个max开头的文件则表示服务器内核支持inotify
[root@localhost ~]# ll /proc/sys/fs/inotify/
总用量 0
-rw-r--r--. 1 root root 0 2月 19 16:02 max_queued_events
-rw-r--r--. 1 root root 0 2月 19 16:02 max_user_instances
-rw-r--r--. 1 root root 0 2月 19 16:02 max_user_watches
//安装inotify-tools
[root@localhost ~]# yum -y install inotify-tools
/写同步脚本,此步乃最最重要的一步,请慎之又慎。让脚本自动去检测我们制定的目录下 \
//文件发生的变化,然后再执行rsync的命令把它同步到我们的服务器端去
[root@localhost ~]# mkdir /scripts
[root@localhost ~]# vim /scripts/inotify.sh
[root@localhost ~]# cat /scripts/inotify.sh
host=192.168.233.131
src=/etc/
des=etc_from_client
password=/etc/rsync.password
user=zqq
inotifywait=/usr/bin/inotifywait
$inotifywait -mrq --timefmt '%Y%m%d %H:%M' --format '%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@localhost ~]# chmod +x /scripts/inotify.sh
[root@localhost ~]# ll -d /scripts/inotify.sh
-rwxr-xr-x. 1 root root 388 2月 19 16:33 /scripts/inotify.sh
//启动脚本
[root@localhost ~]# nohup bash /scripts/inotify.sh &
[4] 2817
[root@localhost ~]# nohup: 忽略输入并把输出追加到"nohup.out"
[root@localhost ~]# ps -ef|grep inotify
root 2675 2427 0 16:14 pts/2 00:00:00 bash /scripts/inotify.sh
root 2676 2675 0 16:14 pts/2 00:00:00 /usr/bin/inotifywait -mrq --timefmt %Y%m%d %H:%M --format %w%f%e -e modify,delete,create,attrib /etc
root 2724 2427 0 16:20 pts/2 00:00:00 bash /scripts/inotify.sh
root 2725 2724 0 16:20 pts/2 00:00:00 /usr/bin/inotifywait -mrq --timefmt %Y%m%d %H:%M --format %w%f%e -e modify,delete,create,attrib /etc
root 2726 2724 0 16:20 pts/2 00:00:00 bash /scripts/inotify.sh
root 2734 2427 0 16:22 pts/2 00:00:00 bash /scripts/inotify.sh
root 2735 2734 0 16:22 pts/2 00:00:00 /usr/bin/inotifywait -mrq --timefmt %Y%m%d %H:%M --format %w%f%e -e modify,delete,create,attrib /etc
root 2736 2734 0 16:22 pts/2 00:00:00 bash /scripts/inotify.sh
root 2817 2427 0 16:34 pts/2 00:00:00 bash /scripts/inotify.sh
root 2818 2817 0 16:34 pts/2 00:00:00 /usr/bin/inotifywait -mrq --timefmt %Y%m%d %H:%M --format %w%f%e -e modify,delete,create,attrib /etc
root 2819 2817 0 16:34 pts/2 00:00:00 bash /scripts/inotify.sh
root 2823 2427 0 16:34 pts/2 00:00:00 grep --color=auto inotify
//在源服务器上生成一个新文件
[root@localhost ~]# cd /etc
[root@localhost etc]# touch ff
[root@localhost etc]# ls |grep ff
ff
groff
//查看inotify生成的日志
[root@localhost ~]# tail -6 /tmp/rsync.log
/etc/ffDELETE was rsynced
/etc/ffDELETE was rsynced
20190219 17:11 /etc/ffCREATE,ISDIR was rsynced
/etc/ffCREATE,ISDIR was rsynced
/etc/ffCREATE,ISDIR was rsynced
/etc/ffCREATE,ISDIR was rsynced
//从日志上可以看到,我们生成了一个ff文件,并且添加了内容到其里面
//设置脚本开机自动启动:
[root@localhost ~]# ll /etc/rc.local
lrwxrwxrwx. 1 root root 13 2月 18 21:04 /etc/rc.local -> rc.d/rc.local
[root@localhost ~]# cd /etc/rc.d/rc.local
-bash: cd: /etc/rc.d/rc.local: 不是目录
[root@localhost ~]# ll /etc/rc.d/rc.local
-rw-r--r--. 1 root root 473 6月 27 2017 /etc/rc.d/rc.local
[root@localhost ~]# chmod +x /etc/rc.d/rc.local
[root@localhost ~]# ll /etc/rc.d/rc.local
-rwxr-xr-x. 1 root root 473 6月 27 2017 /etc/rc.d/rc.local
[root@localhost ~]# vim /etc/rc.local
[root@localhost ~]# cat /etc/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.
nohup /bin/bash /scripts/inotify.sh
touch /var/lock/subsys/local