fs.inotify.max_user_watches默认值太小,导致too many open files

Posted caidingyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fs.inotify.max_user_watches默认值太小,导致too many open files相关的知识,希望对你有一定的参考价值。

运行环境:centos7.5

linux 打开文件数 too many open files 解决方法
fs.inotify.max_user_watches默认值太小,导致too many open files
执行:sysctl -w fs.inotify.max_user_watches="99999999"(后面值根据实际情况可自行调整)
查询是否生效:cat /proc/sys/fs/inotify/max_user_watches

 

 

永久生效方法如下:(建议采用此方法)
vim /etc/sysctl.conf
fs.inotify.max_user_watches = 1280000(后面值根据实际情况可自行调整)

fs.inotify.max_user_instances = 512
添加并运行/sbin/sysctl -p即可 

以上是关于fs.inotify.max_user_watches默认值太小,导致too many open files的主要内容,如果未能解决你的问题,请参考以下文章