其他分享
首页 > 其他分享> > rsync+inotify同步(下行+实时)介绍及部署

rsync+inotify同步(下行+实时)介绍及部署

作者:互联网

文章目录

一、rsync介绍

二、配置rsync源步骤

rsyncd.conf配置文件

独立的账号文件

启用rsync服务

配置源的两种格式:

用户名@主机地址::共享模块名

rsync://用户名@主机地址/共享模块名

三、rsync命令

命令格式:

rsync 【选项】原始位置 目标位置

常用选项:
在这里插入图片描述

四、inotify介绍

1、可通过inotify命令+选项 来实现监控变化

inotifywait:用于持续监控,实时输出结果

inotifywatch:用于短期监控,任务完成后再输出结果

例如:inotifywait -mrq -e modify,create,move,delete /var/www/html

常用选项:
在这里插入图片描述

2、也可通过调整inotify内核参数

max_queue_events    	#监控事件队列大小
max_user_instances  	#最多监控实例数
max_user_watches    	#每个实例最多监控文件数 

五、配置rsync下行同步

实验所需:

master主机配置

yum -y install httpd rsync 

vim /etc/rsyncd.conf 

uid = nobody
gid = nobody
use chroot = yes                                                
address = 192.168.100.133
port 873                                                                
log file = /var/log/rsyncd.log                  
pid file = /var/run/rsyncd.pid                  
hosts allow = 192.168.100.0/24
[wwwroot]                                                               
path = /var/www/html                                    
comment = Document Root of www.wwh.com
read only = yes                                                  
dont comperss = *.gz *.bz2 *.tgz *.zip *.rar *.z        
auth users = wwh                                               
secrets file = /etc/rsyncd_users.db             

在这里插入图片描述
创建编辑账号信息数据文件

vim /etc/rsyncd_users.db
wwh:000000

chmod 600 /etc/rsyncd_users.db

rsync --daemon
netstat -natp | grep rsync

cd /var/www/html
touch xxx.html ccc.html

在这里插入图片描述
在这里插入图片描述

slave配置

yum -y install rsync

cd /opt
mkdir test
chmod 777 test

在这里插入图片描述

vim /etc/server.pass
000000

chmod 600 /etc/server.pass 

rsync -az --delete --password-file=/etc/server.pass wwh@192.168.100.133::wwwroot /opt/test

ls /opt/test

在这里插入图片描述

六、配置rsync+inotify

master配置

vim /etc/rsyncd.conf
read only = no   #将只读模式关闭

kill `cat /var/run/rsyncd.pid`  #采用杀死进程号的方式关闭服务

rsync --daemon      #启动进程
netstat -natp | grep rsync
 
chmod 777 /var/www/html

在这里插入图片描述
slave配置

fs.inotify.max_queued_events = 32768
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576

sysctl -p


ps:查看这些系统参数命令为:cat /proc/sys/fs/inotify/参数项

在这里插入图片描述

编译安装inotify

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/test/"
RSYNC_CMD="rsync -azH --delete --password-file=/etc/server.pass /opt/test/ kiki@192.168.100.133::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/test
touch zzz.html
rm -rf xxx.html

然乎再master节点的 共享模块目录 进行查看同步情况即可

标签:opt,rsync,inotify,--,实时,etc,rsyncd
来源: https://blog.csdn.net/bugggggggg/article/details/117035636