#!/bin/shsrc=/backupdes=zqrsync_passwd=/etc/web.passwdip=192.168.1.127user=zqcd${src}/usr/local/inotify-tools/bin/inotifywait-mrq--format‘%w%f‘-emodify,create,delete,attrib,close_write,move./|whilereadlinedo rsync-avzR--timeout100--password-file=${rsync_pas..
分类:
其他好文 时间:
2016-04-01 16:16:18
阅读次数:
159
利用inotifywait监控主机文件和目录 inotifywait 是一个可以实时监控文件变动的工具,它利用linux内核中的inotify机制实现监控功能。 查看内核版本 [root@Oracle ~]# uname -r 2.6.32-220.el6.i686 安装inotify-tools
分类:
其他好文 时间:
2016-02-27 00:55:08
阅读次数:
225
inotifywait+rsync1、参数查看inotifywait-h-e用来指定要监控的事件(create,move,delete,modify,attrib)-m持续监控-r递归-q简化输出2、脚本如下#!/bin/bash
inotifywait-mrq-ecreate,move,delete,modify/var/www/html/|whilereadabc
do
rsync-azP--delete/var/www/html/root@..
分类:
其他好文 时间:
2016-01-02 01:11:48
阅读次数:
230
JDU:/host-001e67a8d50b /log/today # inotifywait -hinotifywait 3.14Wait for a particular event on a file or set of files.Usage: inotifywait [ options ]...
分类:
系统相关 时间:
2015-11-09 20:46:40
阅读次数:
260
inotifywait用于等待文件或文件集上的一个待定事件,可以监控任何文件和目录设置,并且可以递归地监控整个目录树; inotifywatch用于收集被监控的文件系统计数据,包括每个inotify事件发生多少次等信息从上面可知inotifywait是一个监控事件,可以配合shell脚本使用它。与它...
分类:
其他好文 时间:
2015-10-31 15:43:08
阅读次数:
431
最近2天,nagios总是报警,inotifywait进程为0express_1这台主机有2个rsync脚本,express_1向express_2同步,开启后,会有2个inotifywait进程。每隔几个小时就会挂掉,需要手动启动一下。但是这样太麻烦了,一晚上就发了十几条nagios报警。所以我就想用monit来监控inotifywait进..
分类:
系统相关 时间:
2015-04-20 13:18:49
阅读次数:
263
为了实现项目中图片资源上传后,可以自动等比压缩,以加快用户访问速度,发现了此项技术Inotify,关于此项技术的具体介绍,这里不再啰嗦,百度一搜有很多介绍。这里举单例介绍了Inotifywait的使用vi/tmp/monitor_jpg.sh
#!/bin/bash
exportLANG=C
inotifywait-mrq--eventcreate..
分类:
其他好文 时间:
2015-04-16 17:55:47
阅读次数:
124
#!/bin/bashsrc=/xxx/xxx#本地监控目录des_ip="192.168.1.2192.168.1.3"#目标服务器/usr/local/bin/inotifywait-mrq--timefmt‘%d/%m/%y%H:%M‘--format‘%T%w%f‘\--exclude"\.swp$"\--exclude=/backup/\-eclose_write,modify,delete,create,attrib,move\${src}\|whilereadfiledor..
分类:
其他好文 时间:
2015-04-15 23:44:43
阅读次数:
181
再使用Jnotify监控系统文件改名的过程中,高并发下会有遗漏,改用Inotify, 以下为使用方法Inotify一种强大的、细粒度的、异步文件系统监控机制,它满足各种各样的文件监控需要,可以监控文件系统的访问属性、读写属性、权限属性、删除创建、移动等操作,也就是可以监控文件发生的一切变化。。ino...
分类:
其他好文 时间:
2014-12-04 17:15:53
阅读次数:
244
【命令格式】: inotifywait [ options ] file1 [ file2 ] [ file3 ] [ ... ]【命令原意】: inote file system wait【命令路径】: 【命令功能】: 等待所监听的文件系统触发操作事件【执行权限】: root【命令描述...
分类:
其他好文 时间:
2014-11-27 20:08:52
阅读次数:
239