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

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
:50 AM, Pete Houston p...@openstrike.co.uk wrote: 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

[users@httpd] Will wildcard vhost conflict with a specific one?

2012-04-10 Thread Luis Fernando Alen
Hello, I need to set both a generic/wildcard vhost and a specific one with different DocumentRoot and configurations, just like the example below: *VirtualHost ** *ServerName specific.mydomain.com* * * *DocumentRoot /var/www/specific.mydomain.com/* *JkMount /otherapp serverX* *