文章目录
- 一、rsync介绍
- 二、rsync同步源
- 三、配置rsync源
- 四、rsync命令
- 五、配置源的两种表达方式
- 六、inotify简介
- 七、配置rsync下行同步
- 八、rsync+inotify实时同步
一、rsync介绍
一款快速增量备份工具
Remote Sync 远程同步
支持本地复制,或者与其他SSH,rsync主机同步
二、rsync同步源
rsync同步源
指备份操作的远程服务器,也称为备份源
例:
A服务器同步B服务器的数据,B服务器就是备份源
反过来,B服务器同步A服务器的数据,那么A服务器就是备份源
三、配置rsync源
-
基本思路
建立rsyncd.conf配置文件、独立的账号文件
启用rsync的 --daemon模式 -
配置文件rsyncd.conf
认证配置auth users、secrets file,不加则为匿名 -
独立的账号文件
用户名:密码
每行一个用户记录
独立的账号数据,不依赖系统账号 -
启用rsync服务
通过 --daemon独自提供服务,rsync --daemon
执行kill $(cat /var/run/rsyncd.pid)关闭服务
四、rsync命令
命令使用语法
rsync 【选项】原始位置 目标位置
常用选项
-a | 归档模式,递归并保留对象属性,等同于-rrlptgoD |
---|---|
-v | 显示同步过程的详细信息 |
-z | 在传输时进行压缩 |
-H | 保留硬链接文件 |
-A | 保留ACL属性信息 |
–delete | 删除目标位置有而原始位置没有的文件 |
–checksum | 根据对象的校验和来决定是否跳过文件 |
五、配置源的两种表达方式
格式一:
用户名@主机地址::共享模块名
格式二:
rsync://用户名@主机地址/共享模块名
六、inotify简介
可以监控文件系统的变动情况,并做出通知响应
调整inotify内核参数(优化)
/etc/sysctl.conf(内核参数配置文件)
max_queue_events #监控事件队列大小
max_user_instances #最多监控实例数
max_user_watches #每个实例最多监控文件数
inotifywait:用于持续监控,实时输出结果
inotifywatch:用于短期监控,任务完成后再输出结果
例:
inotifywait -mrq -e modify,create,move,delete /var/www/html
-m | 持续进行监控 |
---|---|
-r | 递归监控所有子对象 |
-q | 简化输出信息 |
-e | 指定要监控哪些事件类型 |
modify | 修改 |
create | 创建 |
move | 移动 |
deletc | 删除 |
七、配置rsync下行同步
环境配置
安装包链接:inotify-tools-3.14.tar.gz
主机 | 操作系统 | IP地址 | 软件 / 安装包 / 工具 |
---|---|---|---|
源服务器 | CentOS7 | 192.168.162.60 | rsync |
客户机 | CentOS7 | 192.168.162.70 | rsync / inotify-tools-3.14.tar.gz |
1、源服务器(192.168.162.60)
systemctl stop firewalld.service
setenforce 0
yum -y install httpd rsync
vim /etc/rsyncd.conf
uid = nobody
gid = nobody
use chroot = yes
address = 192.168.162.60
port 873
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
hosts allow = 192.168.162/24
[wwwroot]
path = /var/www/html
comment = Document Root of www.kk.com
read only = yes
dont comperss = *.gz *.bz2 *.tgz *.zip *.rar *.z
auth users = kiki
secrets file = /etc/rsyncd_users.db
对上面的解释
#建立/etc/rsyncd.conf 配置文件
vim /etc/rsyncd.conf #添加以下配置项
uid = nobody #root
gid = nobody #root
use chroot = yes #禁锢在源目录
address = 192.168.162.60 #监听地址
port 873 #监听端口 tcp/udp 873,可通过cat /etc/services | grep rsync查看
log file = /var/log/rsyncd.log #日志文件位置
pid file = /var/run/rsyncd.pid #存放进程 ID 的文件位置
hosts allow = 192.168.162.0/24 #允许访问的客户机地址
[wwwroot] #共享模块名称
path = /var/www/html #源目录的实际路径
comment = Document Root of www.kk.com
read only = yes #是否为只读
dont compress = *.gz *.bz2 *.tgz *.zip *.rar *.z #同步时不再压缩的文件类型
auth users = backuper #授权账户,多个账号以空格分隔
secrets file = /etc/rsyncd_users.db #存放账户信息的数据文件
vim /etc/rsyncd_users.db
kiki:123123
chmod 600 /etc/rsyncd_users.db
rsync --daemon
netstat -natp | grep rsync
cd /var/www/html
touch aaa.html bbb.html
ls
2、客户机(192.168.162.70)
systemctl stop firewalld.service
setenforce 0
yum -y install rsync
cd /opt
mkdir haha
chmod 777 haha
vim /etc/server.pass
123123
chmod 600 /etc/server.pass
rsync -az --delete --password-file=/etc/server.pass kiki@192.168.162.60::wwwroot /opt/haha
ls haha
八、rsync+inotify实时同步
1、源服务器(192.168.162.60)
vim /etc/rsyncd.conf
read only = no
kill `cat /var/run/rsyncd.pid`
netstat -natp | grep rsync
rsync --daemon
netstat -natp | grep rsync
chmod 777 /var/www/html
2、客户端(192.168.162.70)
cat /proc/sys/fs/inotify/max_queued_events
cat /proc/sys/fs/inotify/max_user_instances
cat /proc/sys/fs/inotify/max_user_watches
vim /etc/sysctl.conf
fs.inotify.max_queued_events = 32768
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576
sysctl -p
yum -y install gcc gcc-c++
#放入安装包
tar zxvf inotify-tools-3.14.tar.gz -C /opt
cd /opt/inotify-tools-3.14/
./configure
make && make install
vim /opt/inotify.sh
#!/bin/bash
INOTIFY_CMD="inotifywait -mrq -e create,delete,move,modify,attrib /opt/haha/"
RSYNC_CMD="rsync -azH --delete --password-file=/etc/server.pass /opt/haha/ kiki@192.168.162.60::wwwroot"
$INOTIFY_CMD | while read DIRECTORY EVENT FILE
do
if [ $(pgrep rsync | wc -l) -le 0 ] ; then
$RSYNC_CMD
fi
done
cd /opt/
chmod +x inotify.sh
./inotify.sh
cd /opt/haha
touch ccc.html
rm -rf aaa.html
源服务器(192.168.162.60)验证
cd /var/www/html
ls
但是,之前上图slave同步时会出现报错,原因是我们以匿名用户身份登陆的
客户机(192.168.162.70)
源服务器(192.168.162.60)