Ich habe gerade Apache 2.4.7 (Ubuntu) auf meinem Ubuntu 14.04 LTS-System installiert und kann weder Prefork- noch Worker-Einstellungen in der Datei /etc/apache2/apache2.conf sehen. Sie sind auch nicht für den virtuellen Standardhost definiert. Soll ich sie selbst so in apache2.conf einstellen?
<IfModule mpm_prefork_module>
StartServers 2
MinSpareServers 2
MaxSpareServers 5
MaxClients 200 #must be customized
ServerLimit 200 #must be customized
MaxRequestsPerChild 100
</IfModule>
conf.d
auf dem/etc/apache2/
. Wie ist das möglich?Your MaxRequestsPerChild seems very low - this can be in the thousands. If you are running mod_php your MaxClients should be lowered significantly, unless you have many gigs of RAM.
?