nginx出现500错误,不会显示具体错误信息。要到日志文件里面去看,通过yum安装的nginx的日志文件位于/var/log/nginx/error.log
日志描述
解决办法
soft nofile 51200 hard nofile 65535
session required /lib/security/pam_limits.so
session required /lib64/security/pam_limits.so #64位系统请使用这个
三、nginx.conf
#Specifies the value for maximum file descriptors that can be opened by this process. worker_rlimit_nofile 51200; events { use epoll; worker_connections 51200; }
然后重启服务器 ulimit -n 查看文件限制,应该显示51200
参考资料
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:NGINX出现500错误的常见解决,提高linux系统的链接数限制到51200 - Python技术站