Re: [users@httpd] apache getting stuck after reaching max number of max clients

2012-09-28 Thread Tom Evans
On Fri, Sep 28, 2012 at 3:04 AM, val john wrote: > Hi.. guys > > My apache config as follows , > > # > Timeout 1000 > KeepAlive Off > MaxKeepAliveRequests 500 > KeepAliveTimeout 15 > > > StartServers 5 > MinSpareServers 5 > MaxSpareServers 10 > MaxClients

Re: [users@httpd] apache getting stuck after reaching max number of max clients

2012-09-27 Thread linuxsupport
You should keep the KeepAliveTimeout to 5, as 5 seconds are enough Also, you could think of serving static contents from a threaded mpm (worker in Apache) or use Nginx in front of Apache that should solve your problem On Fri, Sep 28, 2012 at 10:35 AM, val john wrote: > Hi.. > > Yes its a relay

Re: [users@httpd] apache getting stuck after reaching max number of max clients

2012-09-27 Thread val john
Hi.. Yes its a relay high traffic site, currently i just reduce some time out values such as fallows .., make apache to kill child processors more quickly. hopefully it makes some improvements Timeout 700 KeepAliveTimeout 10 Thank You john On 28 September 2012 08:32, linuxsupport wrote:

Re: [users@httpd] apache getting stuck after reaching max number of max clients

2012-09-27 Thread linuxsupport
You can raise max client limit as bellow MaxClients 250 But if there is any issue with the application/website you are running on the Apache then it will reach to 250 also. Do you have that many requests? 150 concurrent requests are meant for high traffic site. You need to analyze the problem f