WMS日常运维_WJC
3.25、奥克斯项目Apache的server reached MaxClients setting问题 apachelog报错:[mpm_worker:error] [pid 2486:tid 140526322251584] AH00287: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting 解答:检查了一下,这是由于并发链接数太多导致的! 解决: ps -ef | grep httpd | grep -v grep | wc -l --查看进程量 netstat -ant | grep -E ":80|:443" | wc -l ----查看连接数 netstat -ant | grep ESTABLISHED | grep -E ":80|:443" ---查看建立连接数 # vi /usr/local/apache2/conf/extra/httpd-mpm.conf <IfModule mpm_worker_module> StartServers 3 MinSpareThreads 75 MaxSpareThreads 250 ThreadsPerChild 25 ServerLimit 2000