Apache with MaxClients > maxThreads possible?

2008-06-27 Thread Jukka Merinen
Hi all, I have a following configuration: One front-end Apache 2.2 server with worker MPM that is using mod_jk 1.2 to connect to several back-end Tomcat 6.0 servers. Problem: The Apache MaxClients is 1000, whereas Tomcat AJP connector maxThreads in each Tomcat is 100. If simultaneous conn

Re: Apache with MaxClients > maxThreads possible?

2008-06-27 Thread Bill Barker
"Jukka Merinen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > > I have a following configuration: One front-end Apache 2.2 server with > worker MPM that is using mod_jk 1.2 to connect to several back-end Tomcat > 6.0 servers. > > Problem: The Apache MaxClients is 1000

Re: Apache with MaxClients > maxThreads possible?

2008-06-28 Thread Filip Hanik - Dev Lists
use JkOptions +DisableReuse on the httpd/mod_jk side, this turns off keep alives, even though it sounds slower, we often see a performance increase of the overall site, due to much lower resource usage, and not having to match MaxClients to maxThreads Filip Jukka Merinen wrote: Hi all, I ha