[us...@httpd] ServerLimit and MaxClients

2010-04-17 Thread Brent Clark
Hiya What is the consequences of an overly increased ServerLimit and MaxClients. And to add to this puzzle. What if the number of apache process reach that limit. Kind Regards Brent Clark - The official User-To-User support

[us...@httpd] Reverse proxy question

2010-04-17 Thread alin vasile
Hi,    I try to setup a reverse proxy with httpd 2.2.15: ProxyPass /112 http:/mywebserver/112 ProxyPassReverse /112 http:/mywebserver/112    and I want to rewrite some requests through it: RewriteCond %{REQUEST_URI} /112 RewriteRule /112/(.*) http://mywebserver/112/$1 [P,L]    Also I would

Re: [us...@httpd] ServerLimit and MaxClients

2010-04-17 Thread Sander Temme
On Apr 16, 2010, at 11:40 PM, Brent Clark wrote: What is the consequences of an overly increased ServerLimit and MaxClients. Your server will run out of memory, and start thrashing memory to disk. Performance quickly deteriorates. And to add to this puzzle. What if the number of apache

Re: [us...@httpd] ServerLimit and MaxClients

2010-04-17 Thread Jason Nunnelley
ServerLimit and MaxClients are relatively light weight (per instance). You need to do some math here, and it depends on your resources. The math isn't super simple. There's a static amount of cache memory you can calculate for each instance. Google and see what folks say about it. When you

Re: [us...@httpd] ServerLimit and MaxClients

2010-04-17 Thread Eric Covener
On Sat, Apr 17, 2010 at 11:11 AM, Jason Nunnelley ja...@jasonn.com wrote: When you max out this number, you get no more instances - no more connections until you have more available. When you hit this ceiling it's a hard ceiling, the end viewer gets a failure to connect error. Normally the OS