VestaCP - server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting

Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Перейти к:навигация, поиск
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

VestaCP - server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting

Ошибка

[mpm_prefork:error] [pid 19999] AH00161: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting


Увеличиваем лимиты - добавляем в секцию:

# vi /etc/httpd/conf/httpd.conf
<IfModule mpm_prefork_module>
   StartServers             20
   MinSpareServers       5
   MaxSpareServers      10
   MaxRequestWorkers     1024
   ServerLimit   1024
   MaxConnectionsPerChild   0
</IfModule>


# systemctl restart httpd