共计 637 个字符,预计需要花费 2 分钟才能阅读完成。
我的项目中某些页面申请时,页面上啥错都没有,然而 network 里报 500 Internal Server Error 谬误的解决办法
接客户反馈,公司一个正在运行的我的项目中某些页面会有谬误,然而没有错误信息,通过查看 network 发现,nginx 报 500 Internal Server Error 谬误,查看 nginx 日志发现,日志中含有大量的 socket() failed (24: Too many open files) while connecting to upstream 错误信息,如下图所示:
通过查问 linux 下文件句柄可知:
ulimit -n
1024
其零碎的文件句柄为 1024,过于小,所以通过一下形式批改
vi /etc/security/limits.conf
在文件末减少
# 配置 nginx 用户文件限度
nginx soft nofile 65535
nginx hard nofile 65535
#
# # 配置所有用户文件限度
soft nofile 65535
hard nofile 65535
同时 vi /etc/sysctl.conf 开端增加
fs.file-max=65535
重新启动,在应用 ulimit - n 查看的数曾经是 65535,但因为须要重启服务器,故临时在终端应用如下命令解决
ulimit -n 65535
须要同时在 nginx 的配置文件中配置
vi /etc/nginx/nginx.conf
worker_rlimit_nofile 65535;
events {worker_connections 65535;}
即可解决此问题
正文完