Nginx: accept() failed (24: Too many open files) while accepting new connection on

В /etc/security/limits.conf нужно добавить такие строки:

view sourceprint?
1.
* soft nofile 16384
2.
* hard nofile 16384
в текущей консоли от рута сделать

view sourceprint?
1.
ulimit -n 16384
в nginx.conf прописать новое значение worker_connections, равное
16384 поделить на worker_processes

Или

view sourceprint?
1.
worker_rlimit_nofile 16384
в nginx.conf;

Естественно, проверяем конфиг

view sourceprint?
1.
nginx -t
и перечитываем конфиги

view sourceprint?
1.
service nginx reload

Залишити відповідь