inotifywait 开启-r监听文件上限

Linux下的inotifywait对文件夹的递归监听有一定的限制,具体问题如下错误信息:

upper limit on inotify watches reached!
Please increase the amount of inotify watches allowed per user via '/proc/sys/fs/inotify/max_user_watches'.

当使用命令 inotifywait -r 时,配置文件'/proc/sys/fs/inotify/max_user_watches'默认设置为65536,当文件夹下的文件数量大于这个数时,则会抛出监听失败的错误,只需要将此限制修改为更大值即可解决此问题。

你可能感兴趣的:(技术)