linux使用inotify+rsync实现监控目录变化
1. 安装inotify-tools
下载插件
从阿里镜像站中下载相关插件,按照“centos”、“el7”、“x86_64”等标签进行筛选,例如inotify-tools-devel-3.14-9.el7.x86_64.rpm
将插件上传至服务器
使用root身份安装该插件yum -y install inotify-tools-devel-3.14-9.el7.x86_64.rpm
2. 源端、目的端安装rsync
下载插件
从阿里镜像站中下载相关插件,按照“centos”、“el7”、“x86_64”等标签进行筛选,例如rsync-3.1.2-10.el7.x86_64.rpm
将插件上传至服务器
使用root身份安装该插件yum -y install rsync-3.1.2-10.el7.x86_64.rpm
3. 目的端配置rsync
使用root登录目的服务器编辑rsync配置文件vi /etc/rsyncd.conf
编辑内容并保存
uid = root gid = root port = 873 address = 10.20.36.160 hosts allow = 10.20.36.223 10.20.36.36 read only = yes max connections = 10 [datadest] comment = web content path = /tmp/dest ignore errors
- /tmp/dest目录需要提前建立并设置好权限
- [datadest] 自定义模块名,rsync通过模块定义同步的目录,可定义多个,本示例中模块名称命名为‘datadest‘
- uid=0 表示使用root用户
- 使用hosts allow,以ip作为信任,不需要用户名/密码验证,如果使用auth users/secrets file,则客户端也需要使用用户名/密码或者指定密码文件
启动后台服务rsync --daemon
设置开机启动systemctl enable rsyncd.service
启动服务systemctl start rsyncd.service
查询当前服务状态systemctl status rsyncd.service
4. 源端编写脚本,监控目录变化并同步至目的端
#!/bin/bash inotifywait -mrq /tmp/source -e create | while read events do rsync -zrt --delete /tmp/source ::datadest done
(本例中监控文件创建动作)
更改脚本权限chmod 755 ino.sh
执行该脚本./ino.sh
(传输失败,未完待续)
相关推荐
bluecarrot 2020-11-23
Attend 2020-11-17
ZHAICAN 2020-11-16
codedecode 2020-11-14
zhangbingb 2020-11-12
ykmail 2020-11-11
futurezone 2020-11-06
rikeyone 2020-11-04
橄榄 2020-11-04
WenCoo 2020-10-31
liuyuchen 2020-10-27
ROES 2020-10-24
Gexrior 2020-10-22
ZHAICAN 2020-10-20
风语者 2020-10-16
zhongguomin 2020-10-16
净无邪 2020-10-15