• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Resolved [alert] 32414#0: socket() failed (24: Too many open files) while connecting to upstream

Pinocchio

New Pleskian
Hi,

Today, my website reached 4.000 concurrent users and i got lots of errors like:

[alert] 32414#0: .... socket() failed (24: Too many open files) while connecting to upstream.

How do I fix this?
 
Increase maximum number of open files:

# ulimit -n 8192

To increase these limits permanently:

  1. Add the following lines in /etc/security/limits.conf file before # End of file line:
    # tail -n4 /etc/security/limits.conf
    * soft nofile 8192
    * hard nofile 8192

    # End of file

  2. Reboot the server to apply these changes.
 
Thanks, I added those lines and saved the file. Shall I reboot using the following command?

# service sw-engine restart && service sw-cp-server restart
 
Back
Top