对于安装wdcp的VPS,修改的文件是/www/wdlinux/httpd-2.X/conf/httpd-wdl.conf
在httpd-wdl.conf中找到<IfModule mpm_prefork_module>,这里就是apache在prefork模式下的参数段。将该段各值修改为以下数值(512内存的机器):
<IfModule mpm_prefork_module>
ServerLimit 256
StartServers 2
MinSpareServers 2
MaxSpareServers 5
MaxClients 256
MaxRequestsPerChild 50
</IfModule>
最重要的占用内存的参数是标红的几个。
当然根据自己情况,可以适当调整下(1G内存的机器):
<IfModule mpm_prefork_module>
ServerLimit 512
StartServers 5
MinSpareServers 3
MaxSpareServers 10
MaxClients 512
MaxRequestsPerChild 100
</IfModule>
经过上述设置之后,httpd子进程数保持在最小5个,多余的进程在处理请求超过100个后自动销毁释放内存(这个数值不要设为0,否则http进程会一直不销毁),从而保证在正常流量下内存得以及时释放。这些数值可以根据需要适当调整,以适应内存大小。修改后重启apache服务生效。
各字段含义:
ServerLimit 最大客户数
StartServers 服务器启动时建立的子进程数量
MinSpareServers 最小空闲子进程数
MaxSpareServers 最大空闲子进程数
MaxClients 同一时间客户端最大接入请求的数量
MaxRequestsPerChild 每个子进程在其生存期内允许伺服的最大请求数量
这是最近看到的一个方法,做个mark,备用吧!
PS:一定要加ServerLimit,并且要在MaxClients前面,且数值要比MaxClient的值大
1 评论