nginx服務(wù)器頻繁報(bào)“500 Internal Server Error”錯(cuò)誤,是由于服務(wù)器上文炳數(shù)設(shè)置太小,設(shè)置方法如下:
1>. /etc/security/limits.conf文件,最后加上兩句
* soft nofile 65535
* hard nofile 65535
2>. /etc/sysctl.conf,增加:
fs.file-max=65536
3>. nginx配置文件nginx.conf,增加:
在worker_processes的下面增加一行
worker_rlimit_nofile 65535;
操作:
1>. sysctl -p
2>. 重啟nginx
注:看 /etc/profile 文件中是否存在“ ulimit -S -c 0 ”前面添加一個(gè)#號(hào)
#etc profile
cmd=`/bin/cat /etc/profile|grep 'ulimit -S -c 0'|grep -v '^#'`
if [ $cmd ]
then
/bin/sed -i 's/ulimit -S -c 0/#&/' /etc/profile
fi
聯(lián)系客服