PHP-fpm Too Many Open Files 24 Error
You need to set open file descriptor rlimit for the PHP master process. The default value is system defined but one can increase it as per needs. php-fpm too many open files error and solution Edit php-fpm.conf# vi /etc/php/7.0/fpm/php-fpm.confFind rlimit_files;rlimit_files = 1024And update it as follows (or as per your need):rlimit_files = 4096Save and close…