卧疾丰暇豫,翰墨时间作。这篇文章主要讲述rsync(下行同步)与inotify(实时同步)相关的知识,希望能为你提供帮助。
@[toc]
一、rsync简介一款快速增量备份工具
Remote Sync,远程同步
支持本地复制,或者与其他SSH、rsync主机同步
官方网站:https://rsync.samba.org/
二、rsync同步源rsync同步源
指备份操作的远程服务器,也称为备份源
例:
A服务器同步B服务器的数据,B服务器就是备份源
反过来,B服务器同步A服务器的数据,那么A服务器就是备份源
文章图片
三、配置rsync源 1、基本思路
建立rsyncd.conf配置文件、独立的账号文件
启用rsync的 --daemon模式
2、配置文件rsyncd.conf
认证配置auth users、secrets file,不加则为匿名
3、独立的账号文件
用户名:密码
每行一个用户记录
独立的账号数据,不依赖系统账号
4、启用rsync服务
通过 --daemon独自提供服务,rsync --daemon
执行kill $(cat /var/run/rsyncd.pid)关闭服务
四、rsync命令==命令使用语法==
rsync 【选项】原始位置 目标位置
==常用选项==
-a | 归档模式,递归并保留对象属性,等同于-rlptgoD |
---|---|
-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 | 移动 |
delete | 删除 |
主机 | 操作系统 | IP地址 | 软件 / 安装包 / 工具 |
---|---|---|---|
Master | CentOS 7 | 192.168.19.10 | rsync |
slave | CentOS 7 | 192.168.19.11 | rsync / inotify-tools-3.14.tar.gz |
==1、Master(192.168.19.10)==
systemctl stop firewalld.service
setenforce 0yum -y install httpd rsync vim /etc/rsyncd.conf uid = nobody
gid = nobody
use chroot = yes
address = 192.168.184.10
port 873
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
hosts allow = 192.168.184.0/24
[wwwroot]
path = /var/www/html
comment = Document Root of www.lic.com
read only = yes
dont comperss = *.gz *.bz2 *.tgz *.zip *.rar *.z
auth users = kiki
secrets file = /etc/rsyncd_users.db
文章图片
文章图片
文章图片
vim /etc/rsyncd_users.db
jingjing:123123chmod 600 /etc/rsyncd_users.dbrsync --daemon
netstat -natp | grep rsynccd /var/www/html
touch aaa.html bbb.html
ls
文章图片
文章图片
2、==Slave(192.168.19.11)==
systemctl stop firewalld.service
setenforce 0yum -y install rsynccd /opt
mkdir haha
chmod 777 haha
文章图片
vim /etc/server.pass
123123chmod 600 /etc/server.pass rsync -az --delete --password-file=/etc/server.pass jingjing@192.168.19.10::wwwroot /opt/hahals haha
文章图片
八、rsync+inotify实时同步==1、Master(192.168.19.10)==
vim /etc/rsyncd.conf
read only = nokill `cat /var/run/rsyncd.pid`
netstat -natp | grep rsyncrsync --daemon
netstat -natp | grep rsyncchmod 777 /var/www/html
文章图片
文章图片
==2、Slave(192.168.19.11)==
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 = 1048576sysctl -p
文章图片
yum -y install gcc gcc-c++ #放入安装包
tar zxvf inotify-tools-3.14.tar.gz -C /optcd /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/ jingjing@192.168.19.10::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
文章图片
==Master(192.168.19.10)验证==
vim /etc/rsyncd.conf
把nobady修改为root
cd /var/www/html
ls
文章图片
文章图片
==Slave(192.168.19.11)==
文章图片
【rsync(下行同步)与inotify(实时同步)】==Master(192.168.19.10)==
文章图片
推荐阅读
- 云服务器快速配置阿里巴巴NTP(网络时间协议)
- XML DOM – 访问节点概述
- Powershell-批量重命名替换文件名
- Markdown 是什么(#yyds干货盘点#)
- 使用VMware虚拟机安装windows10系统
- XML DOM – 属性和方法概述
- go语言学习---错误处理
- Markdown 基础语法#yyds干货盘点#
- Markdown 高级技巧#yyds干货盘点#