阿里云服务器入门配置
CPU:1核
内存:512M
硬盘:20G
带宽:1M
系统:centos
看到这个配置也基本干不了什么了。
我用的是apache+php+wordpress+mysql做博客。
用360的webscan做检测时发现服务器反应很慢,结果一看apache服务器把内存都吃掉了,
swap也已经用满了。所以用到了apache 的MaxRequestsPerChild参数。
<IfModule mpm_prefork_module> StartServers 8 MinSpareServers 10 MaxSpareServers 15 ServerLimit 500 MaxClients 15 MaxRequestsPerChild 20 </IfModule>