设为首页 收藏本站
查看: 299|回复: 0

[经验分享] inotify实时监控程序安装

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2015-12-2 09:08:04 | 显示全部楼层 |阅读模式
[iyunv@nfs01 ~]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
[iyunv@nfs01 ~]# yum install inotify-tools -y
[iyunv@nfs01 ~]# rpm -qa inotify-tools
inotify-tools-3.14-1.el6.x86_64
[iyunv@nfs01 ~]# ll /proc/sys/fs/inotify/(查看该目录有下面三个文件代表系统支持inotify,Linux内核版本为2.6.13开始支持inotify)
总用量 0
-rw-r--r-- 1 root root 0 2015-11-12 18:21 max_queued_events
-rw-r--r-- 1 root root 0 2015-11-12 18:21 max_user_instances
-rw-r--r-- 1 root root 0 2015-11-12 18:21 max_user_watches
[iyunv@nfs01 ~]# /usr/bin/inotifywait --help
inotifywait 3.14
Wait for a particular event on a file or set of files.
Usage: inotifywait [ options ] file1 [ file2 ] [ file3 ] [ ... ]
Options:
        -h|--help       Show this help text.
        @<file>         Exclude the specified file from being watched.
        --exclude <pattern>
                        Exclude all events on files matching the
                        extended regular expression <pattern>.
        --excludei <pattern>
                        Like --exclude but case insensitive.(排除文件或目录时,不区分大小写)
        -m|--monitor    Keep listening for events forever.  Without
                        this option, inotifywait will exit after one
                        event is received.(始终保持事件监听状态)
        -d|--daemon     Same as --monitor, except run in the background
                        logging events to a file specified by --outfile.
                        Implies --syslog.
        -r|--recursive  Watch directories recursively.(递归查询目录)
        --fromfile <file>
                        Read files to watch from <file> or `-' for stdin.
        -o|--outfile <file>
                        Print events to <file> rather than stdout.
        -s|--syslog     Send errors to syslog rather than stderr.
        -q|--quiet      Print less (only print events).(打印很少的信息,仅仅打印监控事件的信息)
        -qq             Print nothing (not even events).
        --format <fmt>  Print using a specified printf-like format
                        string; read the man page for more details.(打印使用指定的输出类似格式字符串)
        --timefmt <fmt> strftime-compatible format string for use with
                        %T in --format string.(指定时间输出的格式)
        -c|--csv        Print events in CSV format.
        -t|--timeout <seconds>
                        When listening for a single event, time out after
                        waiting for an event for <seconds> seconds.
                        If <seconds> is 0, inotifywait will never time out.
        -e|--event <event1> [ -e|--event <event2> ... ]
                Listen for specific event(s).  If omitted, all events are
                listened for.(通过此参数可以指定需要监控的事件)

Exit status:
        0  -  An event you asked to watch for was received.
        1  -  An event you did not ask to watch for was received
              (usually delete_self or unmount), or some error occurred.
        2  -  The --timeout option was given and no events occurred
              in the specified interval of time.

Events:
        access          file or directory contents were read(文件或目录被读取)
        modify          file or directory contents were written(文件或目录内容被修改)
        attrib          file or directory attributes changed(文件或目录属性被改变)
        close_write     file or directory closed, after being opened in
                        writeable mode
        close_nowrite   file or directory closed, after being opened in
                        read-only mode
        close           file or directory closed, regardless of read/write mode(文件或目录封闭,无论读/写模式)
        open            file or directory opened(文件或目录被打开)
        moved_to        file or directory moved to watched directory(文件或目录被移动至另外一个目录)
        moved_from      file or directory moved from watched directory
        move            file or directory moved to or from watched directory(文件或目录被移动另一个目录或从另一个目录移动至当前目录)
        create          file or directory created within watched directory(文件或目录被创建在当前目录)
        delete          file or directory deleted within watched directory(文件或目录被删除)
        delete_self     file or directory was deleted
        unmount         file system containing file or directory unmounted(文件系统被卸载)
[iyunv@nfs01 ~]# mkdir /server/scripts -p(建立脚本目录)
[iyunv@nfs01 ~]# cd /server/scripts
[iyunv@nfs01 scripts]# vim inotify.sh

#!/bin/bash
inotify=/usr/bin/inotifywait
$inotify -mrq --format '%w%f' -e create,close_write,delete /data \(-mrq保持监控,递归,静默;-e对哪些事件监控,create增,close_write改,delete删)
|while read file
do
  cd / &&
  rsync -az ./data --delete rsync_backup@10.0.0.41::backup \(推送,注意--delete参数为完全覆盖,慎用!)
  --password-file=/etc/rsync.password
done
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
"inotify.sh" 9L, 242C 已写入                                                                  
[iyunv@nfs01 scripts]# vim /etc/rc.local

#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
/etc/init.d/rpcbind start
/etc/init.d/nfs start
/bin/sh /server/scripts/inotify.sh &(放入开机自启动,&为后台运行)
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
~                                                                                                               
"/etc/rc.local" 10L, 305C 已写入   


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-146126-1-1.html 上篇帖子: centos7.x设置开机自启动 下篇帖子: 在centos 6.5下安装svn (Subversion)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表