1006 通过触发实时同步目录
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-02
|
1006 通过触发实时同步目录<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
内容概要:
文件系统监控软件
触发同步动作rsync
实际案例(未完善,待解决)
http://sourceforge.net/projects/inotify-tools
http://inotify-tools.sourceforge.net/
1.0文件系统监控软件-inotify
1.1 查看系统是否支持inotify
[root@localhost ~]# ls /proc/sys/fs/inotify
max_queued_events max_user_instances max_user_watches
如果有输出,则表示系统内核支持inotify.
1.2 安装inotify-tools
tar -xzvf inotify-tools-3.13.tar.gz
cd inotify-tools-3.13
./configure
make &&make install
可以使用man inotify、man inotifywait和man inotifywatch查看相关帮助信息.
2.0实际案例(未完善,待解决)
vi /usr/bin/inotify.sh
#!/bin/bash
inwt=/usr/local/inotify-tools/bin/inotifywait
rsync=/usr/bin/rsync
src=''/var/www/update''
dst1=''/var/www/html1''
dst2=''/var/www/html2''
dst3=''/var/www/html3''
dst=($dst1 $dst2 $dst3)
lendst=${#dst[*]} #取数组元素个数
i=0
while [ $i -lt $lendst ] ;do
{
#echo ${dst[$i]} #取数组全部元素
这里定义了一个数组,里面有三个元素,但是当实际测试时只能同步/var/www/html1这一个目录,希望大家帮忙解决!
By Shaw |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn
为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!
|