Hi all,
Quick question. I have an environment with 500 Virtual Host in the way:
<Host name="www.host1.com">
<Context path="/" docBase="/home/host1/" debug="0" crossContext="false"
reloadable="true" />
</Host>
....
The pool configuration for Apache-Tomcat is:
<Connector className="org.apache.tomcat.service.PoolTcpConnector">
<Parameter name="handler"
value="org.apache.tomcat.service.connector.Ajp13ConnectionHandler"/>
<Parameter name="port" value="8008"/>
<Parameter name="thread_pool" value="on"/>
<Parameter name="max_threads" value="150"/>
<Parameter name="max_spare_threads" value="20"/>
<Parameter name="min_spare_threads" value="10" />
</Connector>
I'm using Linux and Tomcat 3.2.3. I know all the story behind Linux Threads
X Processes :)).
But, why I'm seeing more than 500 threads in my machine ? Is this because
virtual hosting configuration ( one thread per host ) ?
Thanks
PS. I really searched in all the lists but I couldn't find a good answer.
Anybody please ?