Nginxでworker_connectionsを上げたら、「Starting nginx: nginx: [warn] 2048 worker_connections exceed open file resource limit: 1024」と怒られた時の対応
タイトルにもあるようにNginxの設定でworker_connectionsを上げたら、
「Starting nginx: nginx: [warn] 2048 worker_connections exceed open file resource limit: 1024」
と怒られた。
調べてみると
$ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 59470 max locked memory (kbytes, -l) 64 max memory size (kbytes, -m) unlimited open files (-n) 1024 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) 1024 virtual memory (kbytes, -v) unlimited file locks (-x) unlimited
この「open files」と「max user processes」の2つの設定に依存するらしい。
利用できるプロセス数の制限を変更
ulimit -u 2048
ulimit -n 2048
の後に
vim /etc/nginx/nginx.conf
を開き、
worker_connections 2048;
に変更し再起動するとうまくいった。
Comment