nginx 修改 max open files limits

注意:修改 nginx 的 max open files 有個前提,就是你已經修改好了系統的 max open files.nginx

先查看 nginx 的 ulimit:
grep 'open files' /proc/$( cat /var/run/nginx.pid )/limitsubuntu

修改 nginx.servicebash

sudo vi /lib/systemd/system/nginx.service  # (僅適用於 ubuntu)
複製代碼

添加:併發

[Service]
LimitNOFILE=100000
複製代碼

重啓服務: sudo systemctl daemon-reloadspa

修改 nginx.conf, 添加:rest

worker_rlimit_nofile 90000;  # (has to be smaller or equal to LimitNOFILE set above)
複製代碼

重啓 nginx: sudo systemctl restart nginxcode

上面是網上流傳的教程,可是仍是不夠,你這樣改了以後,nginx 的併發能力反而會降低,因此還須要改一個關鍵的參數: 修改 nginx.conf 添加:教程

events {
    worker_connections  90000;
}
複製代碼

重啓 nginx: sudo systemctl restart nginxit

相關文章
相關標籤/搜索