Apache经常崩溃,停止服务网站

我运行一个生产服务器与CentOS版本6.3(最终)和Plesk面板11.0.9运行基于PHP的网站,在一个正常的LAMP堆栈。

Apache/2.2.15 PHP 5.4.35 (cli) (built: Nov 17 2014 12:06:55) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies with the ionCube PHP Loader v4.4.1, Copyright (c) 2002-2013, by ionCube Ltd., and with Zend Guard Loader v3.3, Copyright (c) 1998-2013, by Zend Technologies with Suhosin v0.9.36, Copyright (c) 2007-2014, by SektionEins GmbH MySQL Server Version 5.5.41-cll-lve 

Apache每天晚上或清晨(IST)停止提供网页服务。 重新启动Apache会再次运行。 我检查了Apache的错误日志,发现这个,在崩溃的时候,在美国东部时间。

 [Sat Feb 07 14:07:04 2015] [error] server reached MaxClients setting, consider raising the MaxClients setting ... [Sat Feb 07 22:14:52 2015] [notice] caught SIGTERM, shutting down [Sat Feb 07 22:15:07 2015] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) 

该服务器有一个6核心处理器和16 GB的RAM。 Apache已经重新启动,现在是内存状态。

 [root@server ~]# free -m total used free shared buffers cached Mem: 15932 15432 500 0 351 13426 -/+ buffers/cache: 1654 14278 Swap: 4095 174 3921 

Apache正在使用prefork MPM,它的设置是:

 <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 150 MaxClients 150 MaxRequestsPerChild 10000 </IfModule> 

我已经根据脚本httpd://apachebuddy.pl调整了MaxClients。 我现在已经设置好了,看它是否解决了这个问题:KeepAlive Off

是真的MaxClients设置,导致经常崩溃的Apache? 请指教。