ServerLimit
がMaxClients
より後に定義されていると「MaxClients of 350 exceeds ServerLimit value of 256 servers」のapache起動時にようなエラーが出る。
apache2.conf
<IfModule mpm_prefork_module>
StartServers 10
MinSpareServers 30
MaxSpareServers 50
MaxClients 350
MaxRequestsPerChild 100
ServerLimit 350
</IfModule>
解決法としては順番を変えるだけっぽい
apache2.conf
<IfModule mpm_prefork_module>
StartServers 10
MinSpareServers 30
MaxSpareServers 50
ServerLimit 350
MaxClients 350
MaxRequestsPerChild 100
</IfModule>