最近在线上发现了一个奇怪的问题,通过nginx代理的地址,请求接口一直报500。最开始以为是服务挂了,重启服务,发现还是不行;后面试着直接在服务器上用curl的方式直接用服务器ip加端口来请求接口,请求成功,用代理的地址来请求还是请求不通,于是判断是nginx代理的问题。重启nginx,发现服务可以正常请求了。但是才过一会儿,请求又不行了。
于是去查看nginx打印出来的日志,发现nginx出现了如下信息:
2021/09/10 16:51:16 [crit] 896#896: accept4() failed (24: Too many open files)
2021/09/10 16:51:16 [crit] 28938#28938: accept4() failed (24: Too many open files)
2021/09/10 16:51:16 [crit] 896#896: accept4() failed (24: Too many open files)
2021/09/10 16:51:17 [crit] 28938#28938: accept4() failed (24: Too many open files)
2021/09/10 16:51:17 [crit] 896#896: accept4() failed (24: Too many open files)
2021/09/10 16:51:17 [crit] 28938#28938: accept4() failed (24: Too many open files)
原因就是进程打开文件数过多。
解决办法:
1.查看服务器当前设置的文件数,可以修改/etc/security/limits.conf文件里面的设置;
vim /etc/security/limits.conf
root soft nofile 65535
root hard nofile 65535
* soft nofile 65535
* hard nofile 65535
星号代表全局,soft为软件,hard为硬件,nofile为这里指可打开文件数,后面的数字可以按照需要设置。
2.修改nginx.conf,添加如下代码:
# 配置nginx worker进程最大打开文件数
worker_rlimit_nofile 65535;
3.重启nginx服务,这下正常了。
|