inotify 安装使用
环境信息
- Centos 7
安装
使用系统软件包管理器安装
yum install -y inotify-tools
安装后包含2个命令:
inotifywait
,inotifywatch
,较为常用的命令是inotifywait
编译安装
此处安装版本3.22.6.0
[1]wget https://github.com/inotify-tools/inotify-tools/archive/refs/tags/3.22.6.0.tar.gz
tar -xf 3.22.6.0.tar.gz
cd inotify-tools-3.22.6.0/
yum install -y dh-autoreconf
./autogen.sh && ./configure --prefix=/usr/local/inotify-tools-3.22.6.0 && make && su -c 'make install'
inotifywait 参数说明
语法:
inotifywait [-hcmrq] [-e modify,access…] [-t ] [–format ] [–timefmt ] [ … ]
@ |
可监听事件列表
access 文件读取 |
使用示例
inotifywait -m -r -e modify /source/ | while read dir action filename |
常见错误
inotify 监听文件 modify 一段时间后监控不到文件的变化
使用 inotifywait
监听文件内容的变化,开始时正常,过几分钟后,文件发生了变化,inotifywait
未监控到任何事件,亦未退出或中断。
inotify 的支持,依赖于,以下内核参数
fs.inotify.max_queued_events
- 默认值 16384。inotify 的事件队列大小。超出后会报Event queue overflow
fs.inotify.max_user_watches
- 默认值 8192。指定了当前文件系统允许的最大监控数量。fs.inotify.max_user_instances
- 默认值 128。单个用户可以创建的 inotify 实例的最大数量。当遇到inotify_init: Too many open files
报错,需要修改此值。
inotify 无法监控文件或者目录的变动时,很可能是以上内核参数的限制导致。
本示例通过修改 sysctl fs.inotify.max_queued_events=1000000
后,inotify 功能正常。