使用nginx作为web服务,访问的时候报错:
accept() failed (24: Too many open files)
原因时:nginx的连接数超过了系统设定的最大值!
解决办法:
(1)
[[email protected] nginx]# ulimit -n
1024
[[email protected] nginx]# ulimit -n 655360 #把打开文件数设置足够大,这是临时修改方案
[[email protected] nginx]# ulimit -n
655360
(2)
同时修改nginx.conf文件,添加下面内容,然后重启nginx
worker_rlimit_nofile 655350;
这样就可以解决Nginx连接过多的问题,Nginx就可以支持高并发。
另外, ulimit -n 还会影响到mysql 的并发连接数。
提高文件连接数设置,也能提高mysql并发。
(3)
注意:
用ulimit -n 655360 修改只对当前的shell有效,退出后失效。
所以,需要永久性修改
永久生效方法:
修改/etc/security/limits.conf,在文件底部添加:
* soft nofile 655360
* hard nofile 655360
星号代表全局, soft为软件,hard为硬件,nofile为这里指可打开文件数。
(4)
另外,要使limits.conf文件配置生效,必须要确保 pam_limits.so 文件被加入到启动文件中。
查看 /etc/pam.d/login 文件中有:
session required /lib/security/pam_limits.so
这样,问题就迎刃而解了!
时间: 2024-10-13 15:55:10