Plesk Onyx 17.5, Debian 8.1 x64.
One time per week my Apache webserver crashes all day long. A few minutes before every crash this is in the logfile (var/log/apache2/error.log):
I found this page: Apache keeps going down on a Plesk server: server reached MaxRequestWorkers setting
I set both values to 300 some weeks ago, but it did not help. Now I set it to 500, but still no success, still a lot of crashes. But the server load is as usual, which means there is not much load. The server has far more power than required for my amount of website visitors.
This is my current /etc/apache2/mods-enabled/mpm_prefork.conf:
What else can I do to prevent the crashes?
One time per week my Apache webserver crashes all day long. A few minutes before every crash this is in the logfile (var/log/apache2/error.log):
AH00161: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
I found this page: Apache keeps going down on a Plesk server: server reached MaxRequestWorkers setting
I set both values to 300 some weeks ago, but it did not help. Now I set it to 500, but still no success, still a lot of crashes. But the server load is as usual, which means there is not much load. The server has far more power than required for my amount of website visitors.
This is my current /etc/apache2/mods-enabled/mpm_prefork.conf:
Code:
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxRequestWorkers 500
MaxConnectionsPerChild 0
ServerLimit 500
</IfModule>
What else can I do to prevent the crashes?