nginx网页报 cannot open more files的处理方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx网页报 cannot open more files的处理方法相关的知识,希望对你有一定的参考价值。
1,内核级别
$ vi /etc/sysctl.conf
加上fs.file-max设置
fs.file-max = 100000
然后重新载入核心配置
$ sysctl -p
2,系统级别:修改etc/security/limits.conf中软限制和硬限制数。
* soft nofile 10240
* hard nofile 15360
其中第一行soft表示所有用户打开文件的数量限制为10240,如果超过这个数字则提示警告信息,但是依然可以打开文件。
第二行hard表示最大的打开文件数量不能超过15360,如果超过这个数字,则无法打开文件。
这里也可以针对具体的用户或者用户组进行相应的设定。例如针对nginx这个用户进行设定:
nginx soft nofile 10240
nginx hard nofile 15360
3,应用级别:修改nginx的配置文件 添加work_rlimit_nofile=65535
本文出自 “11617433” 博客,请务必保留此出处http://11627433.blog.51cto.com/11617433/1896366
以上是关于nginx网页报 cannot open more files的处理方法的主要内容,如果未能解决你的问题,请参考以下文章
Nginx 启动报错 (nginx: error while loading shared libraries: XXX: cannot open shared object file: No suc
解决软件启动报error while loading shared libraries: libgd.so.2: cannot open shared object错误
nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No
nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No