目录
一、rsync简介
二、rsync同步源
三、配置rsync源
1、基本思路
2、rsync命令
3、配置源的两种表达方式
4、免交互格式
四、inotify简介
1、调整inotify内核参数(优化)
2、使用inotify-tools辅助工具
3、编写同步脚本
五、配置rsync下行同步
1、Master(192.168.159.105)
Slave(192.168.159.106)
验证
周期性任务
rsync+inotify实时同步
Master(192.168.159.105)
2.Slave(192.168.159.106)
3、验证
rsync(Remote Sync,远程同步)
在远程同步任务中,负责发起rsync司步操作的客户机称为发起端,而负责响应来自客户机的rsync同步操作的服务器称为同步源(备份源)。在同步过程中,同步源负责提供文件的原始位置,发起端应对该位置具有读取权限。
例:
A服务器同步B服务器的数据,B服务器就是备份源
反过来,B服务器同步A服务器的数据,那么A服务器就是备份源
#命令的用法 rsync [选项] 原始位置 目标位置 #----------常用选项-------------------------- -r:递归模式,包含目录及子目录中的所有文件。 -l:对于符号链接文件仍然复制为符号链接文件。 -v:显示同步过程的详细(verbose)信息。 -z:在传输文件时进行压缩(compress)。 -a:归档模式,保留文件的权限、属性等信息,等同于组合选项“-rlptgoD”。 -p:保留文件的权限标记。 -t:保留文件的时间标记。 -g:保留文件的属组标记(仅超级用户使用)。 -o:保留文件的属主标记(仅超级用户使用)。 -H:保留硬连接文件。 -A:保留 ACL 属性信息。 -D:保留设备文件及其他特殊文件。 --delete:删除目标位置有而原始位置没有的文件,即删除差异文件,保留一致性。 --checksum:根据校验和(而不是文件大小、修改时间)来决定是否跳过文件。 --password-file=file:从file中得到密码,用于免交互处理,file文件的权限要是600
将指定的资源下载到本地/root 目录下进行备份。
格式一:
用户名@主机地址::共享模块名 例如: backuper@192.168.159.104::wwwroot /opt
格式二:
rsync://用户名@主机地址/共享模块名 例如: rsync://backuper@192.168.159.104/wwwroot /opt
echo "密码" > /etc/密码文件 chmod 600 /etc/密码文件 #设置周期性任务 crontab -e 30 22 * * * /usr/bin/rsync -az --delete --password-file=/etc/密码文件 backuper@192.168.159 104::wwwroot /opt systemctl restart crond systemctl enable crond
Inotify 是一个 Linux内核的特性,可以监控文件系统的变动情况,并做出通知响应,辅助软件:inotify-tools
例如: vim /etc/sysctl.conf max_queue_events = 16384 max_user_instances = 1024 max_user_watches = 1048576
例: inotifywait -mrq -e modify,create,attrib,move,delete 文件或目录 #---------参数解释------------ -m 持续进行监控 -r 递归监控所有子对象 -q 简化输出信息 -e 指定要监控哪些事件类型 modify 修改 create 创建 attrib 属性更改 move 移动 deletc 删除
编写思路:
(1)先设置两个变量:监控和执行备份
(2)使用while 、read持续获取监控结果
(3)根据结果判断,执行不同的操作
vim /opt/inotify_rsynx.sh #!/bin/bash #定义两个变量:监控文件,执行备份 INOTIFY_CMD="inotifywait -mrq -e modify,create,attrib,move,delete 需要监控的目录或文件" RSYNC_CMD="rsync -azH --delete --password-file=/etc/密码文件 刚才监控的目录或文件 用户名@主机地址::共享模块名" #while read获取监控结果 $INOTIFY_CMD | while read DIRECTORY EVENT FILE do #如果rsync没有运行,执行rsync进行备份操作 if [ $(pgrep rsync | wc -l) -eq 0 ] ; then $RSYNC_CMD fi done
下行同步:将master服务器数据备份到slave服务器
inotify-tools-3.14.tar.gz
环境配置
主机 | 操作系统 | IP地址 | 安装包 |
---|---|---|---|
Master | CentOS7 | 192.168.159.105 | rsync |
Slave | CentOS7 | 192.168.159.106 | rsync / inotify-tools-3.14.tar.gz |
(1)关防火墙、安装相应的软件
systemctl stop firewalld.service setenforce 0 #检查是否安装,一般系统已默认安装rsync rpm -q rsync yum -y install rsync
(2)建立/etc/rsyncd.conf 配置文件
vim /etc/rsyncd.conf uid = root gid = root use chroot = yes address = 192.168.159.105 port 873 log file = /var/log/rsyncd.log pid file = /var/run/rsyncd.pid hosts allow = 192.168.159.0/24 [wwwroot] path = /var/www/html comment = Document Root of www.test.com read only = yes dont comperss = *.gz *.bz2 *.tgz *.zip *.rar *.z auth users = backuper lisi secrets file = /etc/rsyncd_users.db #---------配置解释---------------------------------------------- uid = root gid = root use chroot = yes #禁锢在源目录 address = 192.168.159.105 #监听地址,监听本机地址 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.159.0/24 #允许同步的客户机网段 [wwwroot] #共享模块名称 path = /var/www/html #源目录的实际路径(同步的目录) comment = Document Root of www.test.com read only = yes #是否为只读 dont compress = *.gz *.bz2 *.tgz *.zip *.rar *.z #同步时不再压缩的文件类型 auth users = backuper lisi #授权账户,多个账号以空格分隔 secrets file = /etc/rsyncd_users.db #存放账户信息的数据文件
(3)为备份账户创建数据文件
vim /etc/rsyncd_users.db lisi:123abc chmod 600 /etc/rsyncd_users.db
(4)保证所有用户对源目录/var/www/html(需要备份的文件目录)都有读取权限
yum -y install httpd chmod +r /var/www/html ls -ld /var/www/html
(5)启动 rsync 服务程序
rsync --daemon netstat -natp | grep rsync
关闭 rsync 服务
kill $(cat /var/run/rsyncd.pid) rm -rf /var/run/rsyncd.pid
systemctl stop firewalld.service setenforce 0 yum -y install rsync cd /opt mkdir abc chmod 777 abc vim /etc/server.pass 123abc chmod 600 /etc/server.pass
Master(192.168.159.105)
cd /var/www/html/ vim 1.html
Slave(192.168.159.106)
rsync -az --delete --password-file=/etc/server.pass lisi@192.168.159.105::wwwroot /opt/abc ls abc
#设置周期性任务 crontab -e 0 2 * * * /usr/bin/rsync -az --delete --password-file=/etc/server.pass lisi@192.168.159.105::wwwroot /opt/abc systemctl restart crond systemctl enable crond
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
(1)调整 inotify 内核参数
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 = 17000 fs.inotify.max_user_instances = 1024 fs.inotify.max_user_watches = 1048576 sysctl -p
(2)安装 inotify-tools
yum -y install gcc gcc-c++ make #放入安装包 tar zxvf inotify-tools-3.14.tar.gz -C /opt cd /opt/inotify-tools-3.14/ ./configure && make && make install
(3)编写触发式同步脚本
vim /opt/inotify_rsync.sh #!/bin/bash INOTIFY_CMD="inotifywait -mrq -e create,delete,move,modify,attrib /opt/abc/" RSYNC_CMD="rsync -azH --delete --password-file=/etc/server.pass /opt/abc/ lisi@192.168.159.105::wwwroot" $INOTIFY_CMD | while read DIRECTORY EVENT FILE do if [ $(pgrep rsync | wc -l) -le 0 ] ; then $RSYNC_CMD fi done
解释如下:
vim /opt/inotify_rsync.sh #!/bin/bash INOTIFY_CMD="inotifywait -mrq -e create,delete,move,modify,attrib /opt/abc/" ##变量INOTIFY CMD=持续监控/opt/abc目录下的创建、删除、移动、修改、修改属性信息 RSYNC_CMD="rsync -azH --delete --password-file=/etc/server.pass /opt/abc/ lisi@192.168.159.105::wwwroot" ##变量RSYNC CMD=使用lisi用户,同步/opt/abc目录下的文件,到192.168.159.105的共享模块wwwroot下 --a归档-z进行压缩-H保留硬链接文件 --delete 删除原位置没有的文件 使用密码文件 $INOTIFY_CMD | while read DIRECTORY EVENT FILE ##将变量INITIFY CMD输出的内容交给while循环判断 如果有遍历(读取)到目录、事件和文件等类型的, 执行do里面的语句 do if [ $(pgrep rsync | wc -l) -le 0 ] ; then $RSYNC_CMD ##判断rsync服务是否在运行, 没有运行就执行变量RSYNC CMD同步文件 fi done cd /opt/ chmod +x inotify_rsync.sh . /opt/inotify_rsync.sh & #加入开机自动执行 chmod +x /etc/rc.d/rc.local echo '/opt/inotify_rsync.sh' >> /etc/rc.d/rc.local
Slave(192.168.159.106)
cd /opt/abc touch zxc.html ls rm -rf zxc.html ls
Master(192.168.159.105)
cd /var/www/html ls