CentOS7下rsync服务的基本详解和使用
第1章 Rsync基本概述
1.1 什么是Rsync
rsync是一款开源,快速,多功能的可实现增量的本地或远程的数据镜像同步备份的优秀工具。适用于多个平台。从软件名称可以看出来是远程同步的意思(remote sync)可实现全量备份与增量备份,因此非常适合用于架构集中式备份或异地备份等应用。
1.1.1 rsync官方地址
1.1.2 rsync监听端口
873
1.1.3 rsync运行模式
C/S 客户端/服务端
B/S 浏览器/服务端
1.1.4 rsync备份方式
全量备份
将客户端所有的数据内容全都备份到服务端
增量备份
将客户端数据内容(不包含已备份到服务端的内容)增量备份到服务端
1.2 Rsync传输方式及应用场景
1.2.1 上传(推)
所有主机推送本地数据至Rsync备份服务器,会导致数据同步缓慢(适合少量数据备份)
机器量不是很多的时候,可以使用推送
1.2.2 下载(拉)
rsync备份服务端拉取所有主机上的数据,会导致备份服务器开销大
机器量很大的时候,推和拉协同使用
1.3 Rsync传输模式
Rsync大致使用三种主要的数据传输方式
1.3.1 本地方式(单个主机本地之间的数据传输,类似cp命令)
Local:
本地传输
Local: rsync [OPTION...] SRC... [DEST]
rsync ---备份命令(cp)
[options] ---选项
SRC... ---本地源文件
[DEST] ---本地目标文件
[root@backup ~]# rsync -avz /etc/passwd /tmp/ [root@backup ~]# ls /tmp/passwd /tmp/passwd
1.3.2 远程方式通过(ssh通道传输数据,类似scp命令)
Access via remote shell: 远程传输
Pull: rsync [OPTION...] [USER@]HOST:SRC... [DEST] 下载(拉)
Pull ---拉取, 下载
rsync ---备份命令
[options] ---选项
[USER@] ---目标主机的系统用户
HOST ---目主机IP地址或域名
SRC... ---目标主机源文件
[DEST] ---下载至本地哪个位置
下载pull
[root@server01 ~]# echo "This Nfs" > file [root@server02 tmp]# rsync -avz root@192.168.0.220:/root/file /opt/ receiving incremental file list file sent 43 bytes received 96 bytes 92.67 bytes/sec total size is 9 speedup is 0.06 [root@server02 tmp]# ll /opt/file -rw-r--r--. 1 root root 9 1月 13 13:54 /opt/file
Push: rsync [OPTION...] SRC... [USER@]HOST:DEST 上传(推)
Push ---推,上传
rsync ---备份命令
[options] ---选项
SRC... ---本地源文件
[USER@] ---目标主机的系统用户
HOST ---目主机IP地址或域名
[DEST] ---目标对应位置
上传push(将backup的file2文件上传至NFS服务器的/mnt目录)
[root@server01 ~]# echo "This Rsync" > file2 [root@server01 ~]# rsync -avz /root/file2 root@192.168.0.221:/opt sending incremental file list file2 sent 99 bytes received 35 bytes 89.33 bytes/sec total size is 11 speedup is 0.08 [root@server02 tmp]# ll /opt/file2 -rw-r--r--. 1 root root 11 1月 13 13:57 /opt/file2
推送目录(推送/root/目录下面的所有文件和目录,不会推送/root/目录本身)
[root@server01 ~]# rsync -avz /root/ root@192.168.0.221:/tmp skipping directory .
推送目录,推送目录本身以及目录下面的所有文件 [root@server01 ~]# rsync -avz /root root@192.168.0.221:/tmp skipping directory root [root@server01 ~]#
远程方式存在的缺陷:
1.需要使用系统用户(不安全)
2.使用普通用户(权限存在问题)
3.需要走ssh协议
1.3.3 守护进程(服务,持续后台运行)
Access via rsync daemon: 守护进程方式传输
Pull: rsync [OPTION...] [USER@]HOST::SRC... [DEST]
rsync ---命令
[OPTION...] ---选项
[USER@] ---远程主机用户(虚拟用户)
HOST:: ---远程主机地址
SRC... ---远程主机模块(不是目录)
[DEST] ---将远程主机数据备份至本地什么位置
拉取rsync备份服务的backup模块数据至本地/mnt目录
创建用户
[root@server01 ~]# useradd -s /sbin/nologin -M rsync
第2章 Rsync服务配置
2.1 需要准备两台服务器
角色 |
外网IP(NAT) |
内网IP(LAN) |
主机名 |
Rsync服务端 |
eth0:10.0.0.41 |
eth1:172.16.1.41 |
server01 |
Rsync客户端 |
eth0:10.0.0.31 |
eth1:172.16.1.31 |
server02 |
2.2 安装rsync
[root@server01 ~]# yum install rsync -y
2.3 配置rsync
查询配置文件存放的路径
[root@server01 ~]# rpm -qc rsync /etc/rsyncd.conf
进行配置
[root@server01 etc]# cat /etc/rsyncd.conf uid = rsync gid = rsync port = 873 fake super = yes use chroot = no max connections = 200 timeout = 600 ignore errors read only = false list = false auth users = rsync_backup secrets file = /etc/rsync.password log file = /var/log/rsyncd.log ##################################### [backup] comment = welcome to backup! path = /backup [root@server01 etc]#
2.3.1 配置内容解释
# 全局模块 uid = rsync --- 运行进程的用户 gid = rsync --- 运行进程的用户组 port = 873 --- 监听端口 fake super = yes --- 无需让rsync以root身份运行,允许存储文件的完整属性 use chroot = no --- 关闭假根功能 max connections = 200 --- 最大连接数 timeout = 600 --- 超时时间 ignore errors --- 忽略错误信息 read only = false --- 对备份数据可读写 list = false --- 不允许查看模块信息 auth users = rsync_backup --- 定义虚拟用户,作为连接认证用户 secrets file = /etc/rsync.passwd ---定义rsync服务用户连接认证密码文件路径 ##局部模块 [backup] --- 定义模块信息 comment = commit --- 模块注释信息 path = /backup --- 定义接收备份数据目录
2.4.1 创建备份目录(尽可能磁盘空间足够大),授权rsync用户为属主
[root@server01 ~]# mkdir /backup [root@server01 ~]# chown -R rsync.rsync /backup/ [root@server01 ~]#
2.5 创建虚拟用户密码文件(用于客户端连接时使用的用户)
创建虚拟用户和密码文件,并赋予600权限
[root@server01 ~]# echo "rsync_backup:1" >/etc/rsync.password [root@server01 ~]# chmod 600 /etc/rsync.password
2.6 启动rsync服务,并加入开机自启
[root@server01 ~]# systemctl start rsyncd [root@server01 ~]# systemctl enable rsyncd Created symlink from /etc/systemd/system/multi-user.target.wants/rsyncd.service to /usr/lib/systemd/system/rsyncd.service.
2.7 启动后检查对应端口
[root@server01 ~]# netstat -lntp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:873 0.0.0.0:* LISTEN 8096/rsync tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 7006/sshd tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 7205/master tcp6 0 0 :::873 :::* LISTEN 8096/rsync tcp6 0 0 :::22 :::* LISTEN 7006/sshd tcp6 0 0 ::1:25 :::* LISTEN 7205/master
第3章 Rsync服务实践
rsync实现简单的本地打包和推送
3.1 将客户端的/etc/passwd 推送至 rsync服务端[backup]
rsync [OPTION...] SRC... [USER@]HOST::DEST
[root@server02 root]# rsync -avz /etc/passwd rsync_backup@192.168.0.220::backup Password: #密码为1 sending incremental file list passwd sent 519 bytes received 43 bytes 160.57 bytes/sec total size is 982 speedup is 1.75 [root@server02 root]# ll 总用量 120
3.2 将rsync服务端模块[/backup]下载至本地
[root@server02 root]# rsync -avz rsync_backup@192.168.0.220::backup /opt Password: receiving incremental file list ./ passwd sent 50 bytes received 566 bytes 246.40 bytes/sec total size is 982 speedup is 1.59
3.3 同步时不输入密码[第一种方式,sersync]
在服务端创建密码文件并赋予600权限
[root@server02 root]# echo "1" >/etc/rsync.password [root@server02 root]# chmod 600 /etc/rsync.password [root@server02 root]#
执行rsync服务端模块[/backup]下载至本地的命令加--password-file=/etc/rsync.password
[root@server02 opt]# rm -rf * [root@server02 opt]# rsync -avz rsync_backup@192.168.0.220::backup /opt --password-file=/etc/rsync.password receiving incremental file list ./ passwd sent 50 bytes received 566 bytes 1,232.00 bytes/sec total size is 982 speedup is 1.59 [root@server02 opt]# ll 总用量 4 -rw-r--r--. 1 root root 982 12月 25 13:18 passwd
3.4 同步时不输入密码[第二种方式:写脚本时使用]
[root@server02 opt]# export RSYNC_PASSWORD=1 [root@server02 opt]# rsync -avz rsync_backup@192.168.0.220::backup /opt receiving incremental file list sent 24 bytes received 89 bytes 226.00 bytes/sec total size is 982 speedup is 8.69
第4章 Rsync常见故障
4.1 服务未开启
4.1.1 开启服务
systemctl start rsyncd netstat -lntp 查看端口
4.2 防火墙和selinux未关闭
4.2.1 关闭防火墙
systemctl disable firewalld
systemctl stop firewalld
4.2.2 关闭selinux
sed -i '/^SELINUX=/c SELINUX=disabled' /etc/selinux/config
4.3 密码输入错误
4.4 命令格式错误
4.5 密码文件权限必须是600
chmod 600 /etc/rsync.password
4.6 rsync配置错误
vi /etc/rsyncd.conf
4.7 备份目录属主错误
chown -R rsync.rsync /backup/