当前位置:   article > 正文

解决tail命令提示“tail: inotify 资源耗尽,无法使用 inotify 机制,回归为 polling 机制”_tail: inotify resources exhausted

tail: inotify resources exhausted

解决tail命令提示“tail: inotify 资源耗尽,无法使用 inotify 机制,回归为 polling 机制”

临时解决方法:

  1. # 查看 inotify 的相关配置
  2. $ sysctl fs.inotify
  3. fs.inotify.max_queued_events = 16384
  4. fs.inotify.max_user_instances = 128
  5. fs.inotify.max_user_watches = 8192
  6. # 临时修改配置(重启后会恢复)
  7. $ sudo sysctl -w fs.inotify.max_user_watches=100000

永久解决方法:

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

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号