Como corrigir erro "AH00161: server reached MaxRequestWorkers" no Apache 2?

Edite o arquivo /etc/httpd/conf.d/mpm.conf e dobre os valores existentes, exemplo:


Se estiver assim:

<IfModule mpm_prefork_module>

    ServerLimit            1024

    MaxClients             1024

    StartServers             20

    MinSpareServers          20

    MaxSpareServers         100

    MaxRequestWorkers       512

    MaxConnectionsPerChild    0

</IfModule>


Dobre os valores para:

<IfModule mpm_prefork_module>

    ServerLimit            2048

    MaxClients             2048

    StartServers             40

    MinSpareServers          40

    MaxSpareServers         200

    MaxRequestWorkers      1024

    MaxConnectionsPerChild    0

</IfModule>


Por último, reinicie o apache:

$ sudo systemctl restart httpd 

Comentários

Postagens mais visitadas deste blog

Configurar teclado americano com acentuação em português + Ç no Ubuntu 18.04LTS e 20.04LTS

Como instalar a impressora Epson L395 via wi-fi no Ubuntu 18.04 LTS e Ubuntu 20.04 LTS