Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread Pete Houston
On Thu, May 03, 2012 at 11:29:52AM -0700, P J wrote: > Good idea about raising the limit to accommodate the peak as a starting > point, I've switched it to: > > StartServers 500 > MinSpareServers 1024 > MaxSpareServers 1024 > ServerLimit 3500 > MaxClients 3500 > MaxRequestsPerChild

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread Alexandr Normuradov
can you please give us the full output from Apaches scoreboard service httpd fullstatus (yum install elinks) you can search/replace any private data, however the rest of the output is very important for troubleshooting. Sincerely, Alexandr Normalex On 3 May 2012 13:29, P J wrote: > > > On

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread P J
On Thu, May 3, 2012 at 9:51 AM, Pablo Armando wrote: > What about the number of open file descriptors ?? > > > > On 05/03/2012 01:33 PM, Tom Evans wrote: > >> On Mon, Apr 30, 2012 at 4:20 PM, P J wrote: >> The fact that your issue seems to happen when you go above 1024 >> clients - a magic n

Re: [users@httpd] sh: fetch: command not found

2012-05-03 Thread vishesh kumar
Thanks Tom for wonderful suggestion. Let me try this On Thu, May 3, 2012 at 9:37 PM, Tom Evans wrote: > On Mon, Apr 30, 2012 at 12:15 PM, vishesh kumar > wrote: > > Hi Members, > > > > I am getting a lots of following error in my error_log > > > >

[users@httpd] Re: Tomcat + APR + 64-bit is it possible??

2012-05-03 Thread Tony Anecito
So there is no Apache Web server 64-bit binary for windows? I went to try to download one and it looked like none existed. Am I right? --- On Tue, 5/1/12, Tony Anecito wrote: From: Tony Anecito Subject: Tomcat + APR + 64-bit is it possible?? To: "Apache Mailing List" Date: Tuesday, May 1, 20

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread Pablo Armando
What about the number of open file descriptors ?? On 05/03/2012 01:33 PM, Tom Evans wrote: On Mon, Apr 30, 2012 at 4:20 PM, P J wrote: The fact that your issue seems to happen when you go above 1024 clients - a magic number - suggests that it may be something programatically wrong. Hope

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread Tom Evans
On Mon, Apr 30, 2012 at 4:20 PM, P J wrote: > Greetings all, > > Hoping someone can point me in the right direction as I've spent the last > week trying to figure out where the "issue" is but haven't been able to. > > Running Apache 2.2.3 on CentOS 5.8. > > At a few points during the day when traf

Re: [users@httpd] sh: fetch: command not found

2012-05-03 Thread Tom Evans
On Mon, Apr 30, 2012 at 12:15 PM, vishesh kumar wrote: > Hi Members, > > I am getting a lots of following error in my error_log > > -- > sh: fetch: command not found > --- > > What could be the reason as no

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread Luis Fernando Alen
Pete, Definitely. You're right. This is only valid for the MPM worker, not prefork. I was still sleeping when I jumped in this thread. Sorry guys. Luis Alen (31) 3239.4001 luis.a...@izap.com.br iZap Tecnologia e Serviços http://izap.com.br On Thu, May 3, 2012 at 8:50 AM, Pete Houston wrote

[users@httpd] Disabling SNI in Apache 2.2 or 2.4

2012-05-03 Thread Lilienberg, Daniel ()
Hi, Im trying to setup a concept with Stunnel as a client and Apache with HTTPS at server side. My error logs is saying: AH02032: Hostname 192.168.2.200 provided via SNI and hostname www.sunet.se provided via HTTP are different Even if Im using "SSLStrictSNIVHostCheck Off". I've tried in the

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread Pete Houston
On Thu, May 03, 2012 at 08:33:58AM -0300, Luis Fernando Alen wrote: > Perhaps your prefork settings are the cause of the issue. > > Look, you have 80 StartServers and 120 MaxSpareServers, and with such > settings, apache can spawn 9600 (80*120) children. That's not how prefork works. I think you

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread Luis Fernando Alen
Hello, PJ. Perhaps your prefork settings are the cause of the issue. Look, you have 80 StartServers and 120 MaxSpareServers, and with such settings, apache can spawn 9600 (80*120) children. However, your ServerLimit and MaxClients (3500) are way to lower than that. I've had similar issues when