2006/12/04(月)[Apache2] プロセスの数を制限する
/etc/httpd/conf/httpd.conf
デフォルトの設定
<IfModule prefork.c> StartServers 3 MinSpareServers 5 MaxSpareServers 20 ServerLimit 5 MaxClients 5 MaxRequestsPerChild 4000 </IfModule>
で、このように変更
<IfModule prefork.c> StartServers 2 MinSpareServers 2 MaxSpareServers 8 ServerLimit 5 MaxClients 5 MaxRequestsPerChild 3000 </IfModule> ||<