Estoy ejecutando nginx como frontend y php-fpm como backend para archivos php de prcesss. Obtengo el error "Demasiados archivos abiertos" en mi /var/log/php-fpm/error.log. Aumenté & soft ulimit a 65535 y parece que no puede resolver el problema.php-fpm Demasiados archivos abiertos
/var/log/php-fpm/error.log
[17-Sep-2012 14:43:51] ERROR: failed to prepare the stderr pipe: Too many open files (24)
[17-Sep-2012 14:43:52] ERROR: failed to prepare the stderr pipe: Too many open files (24)
ulimit -n
65535
/etc/php-fpm/www.conf
rlimit_files = 65535
Gracias Gleen, he aumentado el límite abierto de FD en el nivel del sistema operativo Linux y el problema está resuelto. http://www.cyberciti.biz/faq/linux-unix-nginx-too-many-open-files/ – Ryan