码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下inotify监控文件夹状态,发生变化后触发rsync同步

时间:2016-11-29 17:16:13      阅读:445      评论:0      收藏:0      [点我收藏+]

标签:tar.gz   tar   rip   time   http   安装工具   srcdir   create   inotify   

1、安装工具
--inotify
wget http://cloud.github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gz
tar -zxvf inotify-tools-3.14.tar.gz
cd inotify-tools-3.14
./configure --prefix=/usr/local/inotify
make && make install

--rsync
下载:http://rsync.samba.org/
tar -zxvf rsync-3.1.0.tar.gz
cd rsync-3.1.0
./configure --prefix=/usr/local/rsync
make && make install

 

2、编写脚本:
[root@192.168.1.1 script]$ vim monitor_dircharge.sh
#!/bin/sh
## -------------------------------------------------

## @监控目录状态,有变化后触发rsync同步
## -------------------------------------------------

srcdir="/data/www/New/html/www"
/usr/bin/inotifywait -mrq --timefmt ‘%d/%m/%y-%H:%M‘ --format ‘%T%w%f‘ -e modify,delete,create,attrib ${srcdir} \
| while read file
do
sudo rsync -rlptDvzHS --port=9789 --password-file=/etc/rsyncd.password_client /data/www/New/html/www/ root@192.168.1.2::Server/New/html/www/
done

 

3、启动脚本
nohup sudo sh /data/script/monitor_dircharge.sh >> /tmp/inotify.log 2>&1 &

 

Linux下inotify监控文件夹状态,发生变化后触发rsync同步

标签:tar.gz   tar   rip   time   http   安装工具   srcdir   create   inotify   

原文地址:http://www.cnblogs.com/fjping0606/p/6114123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!