• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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