• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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