注意:修改 nginx 的 max open files 有個前提,就是你已經修改好了系統的 max open files.nginx
先查看 nginx 的 ulimits: grep 'open files' /proc/$( cat /var/run/nginx.pid )/limits
ubuntu
修改 nginx.servicebash
sudo vi /lib/systemd/system/nginx.service # (僅適用於 ubuntu)
添加:併發
[Service] LimitNOFILE=100000
重啓服務:sudo systemctl daemon-reload
rest
修改 nginx.conf,
添加:code
worker_rlimit_nofile 90000; # (has to be smaller or equal to LimitNOFILE set above)
重啓 nginx:sudo systemctl restart nginx
教程
上面是網上流傳的教程,可是仍是不夠,你這樣改了以後,nginx 的併發能力反而會降低,因此還須要改一個關鍵的參數:
修改 nginx.conf
添加:it
events { worker_connections 90000; }
重啓 nginx:sudo systemctl restart nginx
io