注:支持本地复制,或者与其他SSH、rsync主机同步
(1)rsync同步源
(2)指备份操作的远程服务器,也称为备份源
(1)建立rsyncd.conf配置文件、独立的账号文件
(2)启用rsync的–daemon模式
认证配置auth users、secrets file,不加则匿名
(1)用户名:密码
(2)每行一个用户记录
(3)独立的账号数据,不依赖系统账号
(1)通过–daemon独自提供服务,rsync --daemon
(2)执行kill$(cat /var/run/rsyncd.pid)关闭服务
格式一:
用户名@主机地址::共享模块名
格式二:
rsync://用户名@主机地址/共享模块名
-a | 归档模式,递归并保留对象属性 |
---|---|
-v | 显示同步过程的详细信息 |
-z | 在传输时进行压缩 |
-H | 保留硬链接文件 |
-A | 保留ACL属性信息 |
- -delete | 删除目标位置有但原始位置没有的文件 |
- -checksum | 根据对象的校验和来决定是否跳过文件 |
注:- -delete就是删除差异文件,保留一致性。
inotify:监控文件系统的变动,并做出通知响应。
相关概述:
1、调整inotify内核参数
2、/etc/sysctl.conf(内核参数配置文件)
max_queue_events #监控事件队列大小
max_user_instances #最多监控实例数
max_user_watches #每个实例最多监控文件数
3、inotifywait:用于持久监控,实时输出结果
4、inotifywatch:用于短期监控,任务完成后再输出结果
5、常用选项
-m | 持续监控 |
---|---|
-r | 递归监控所有子对象 |
-q | 简化输出信息 |
-e | 指定要监控的事件类型 |
modity | 修改 |
create | 创建 |
move | 移动 |
delete | 删除 |
配置环境
主机 | 操作系统 | IP | 安装包 |
---|---|---|---|
master | centos7 | 192.168.177.8 | rsync |
slave | centos7 | 192.168.177.18 | rsync / inotify-tools-3.14.tar.gz |
下行同步:将master服务器数据备份到slave服务器
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.177.8
port 873
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
hosts allow = 192.168.177.0/24
[wwwroot]
path = /var/www/html
comment = Document Root of www.yy.com
read only = yes
dont comperss = *.gz *.bz2 *.tgz *.zip *.rar *.z
auth users = tefuir
secrets file = /etc/rsyncd_users.db
vim /etc/rsyncd_users.db
tefuir:123123
chmod 600 /etc/rsyncd_users.db
rsync --daemon
netstat -natp | grep rsync
cd /var/www/html
touch edg.html rng.html
ls
systemctl stop firewalld.service
setenforce 0
yum -y install rsync
cd /opt
mkdir gogo
chmod 777 gogo
vim /etc/server.pass
123123
chmod 600 /etc/server.pass
rsync -az --delete --password-file=/etc/server.pass [email protected]::wwwroot /opt/gogo
ls gogo
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
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/gogo/"
RSYNC_CMD="rsync -azH --delete --password-file=/etc/server.pass /opt/gogo/ [email protected]::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/gogo
touch ig.html
rm -rf edg.html
这里报错是因为我们用匿名用户登录
master:192.168.177.8验证
cd /var/www/html
ls