To resolve this issue, increase the number of file descriptors available to httpd.
To check the number of hard and soft file descriptors available on the system, run the command:
ulimit -n
To increase the number of file descriptors available to httpd, run the command:
ulimit -n number
Where number is the number of file descriptors available to httpd
For example:
ulimit -n 2048
Contact your operating system provider for more information about file descriptors and the ulimit command.
Note: This command can be added to a system startup file or the apache_startup.sh script for the affected instance.