码迷,mamicode.com
首页 > 其他好文 > 详细

tail: inotify cannot be used, reverting to polling: Too many open files

时间:2019-07-08 19:30:30      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:tomcat   sed   警告   rev   notify   poll   man   print   file   

tail -f catalina.out 出现警告:

 tail: inotify cannot be used, reverting to polling: Too many open files

lsof | awk ‘{ print $2; }‘ | sort -rn | uniq -c | sort -rn | head

查到是tomcat进程打开了很多文件,处理方法:

在 /etc/sysctl.conf文件中加入下面的配置:

fs.inotify.max_user_watches=1048576
fs.inotify.max_user_instances=1048576

 

sysctl -p /etc/sysctl.conf 使修改生效。再次执行 tail -f catalina.out 就可以了。

tail: inotify cannot be used, reverting to polling: Too many open files

标签:tomcat   sed   警告   rev   notify   poll   man   print   file   

原文地址:https://www.cnblogs.com/digdeep/p/11153069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!