View Single Post
Old 06-05-2017, 02:05 PM   #2
ISPsystem team
 
Join Date: Jul 2014
Posts: 443
ksenya is on a distinguished road
Default

This happens because Nginx meets the open files limit. This is a well-known issue of the server environment. To resolve it, you need to make additional changes into the Nginx config in systemd:

1) mkdir -p /etc/systemd/system/nginx.service.d
2) echo -e "[Service]\nLimitNOFILE=16384" >> /etc/systemd/system/nginx.service.d/nofile.conf
3) systemctl daemon-reload
4) systemctl restart nginx.service
ksenya is offline   Reply With Quote