使用tail -f 命令时抛出“ inotify 资源耗尽,无法使用 inotify 机制,回归为 polling 机制”

在使用tail命令时,加上 -f 参数实时输出时,抛出以下提示

inotify 资源耗尽,无法使用 inotify 机制,回归为 polling 机制

首先 ps -aux 查看当前用户所有进程的详细信息

查看是否出现未正常关闭的进程,如果都是正常,则修改以下配置


# 查看 inotify 的相关配置
$ sysctl fs.inotify
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 128
fs.inotify.max_user_watches = 8192
# 临时修改配置-及时生效,重启后恢复默认配置
$ sudo sysctl -w fs.inotify.max_user_watches=100000

永久生效配置方法:
$ sudo echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf
# 重载配置文件,使之马上生效
$ sudo sysctl -p

 

你可能感兴趣的:(Linux)