如果使用yum安装的httpd
默认的设置开启占用内存好厉害,直到服务器卡死重启.
修改httpd.conf,修改KeepAlive=On
由于作者使用的是prefork的模式.
找到以下项并修改
<IfModule prefork.c>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
ServerLimit 256
MaxClients 256
MaxRequestsPerChild 256
</IfModule>
注:以上的根据自己的VPS,访问量来决定,最重要的是MaxRequestsPerChild别设置0,如果你的VPS内存资源有足够的话,可以设置更大,包括httpd的进程.
关于作者