Ben,
Disclaimer:
I'm not a Tomcat developer, but I do use it to develop
software and integrate applications.
In $CATALINA_HOME/conf/server.xml you should see an
entry similar to the following:
<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector
className="org.apache.ajp.tomcat4.Ajp13Connector"
port="8009"
minProcessors="5"
maxProcessors="75"
acceptCount="10" debug="0"/>
I'm using 4.1.18, so your entry may be a bit
different. It looks like from your error messages
that you may be running out of processors.
The following information is taken from Tomcat's
4.1.18 documentation. If you have the documentation
installed somewhere, the URL is:
http://localhost/tomcat-docs/config/jk.html
acceptCount:
The maximum queue length for incoming connection
requests when all possible request processing threads
are in use. Any requests received when the queue is
full will be refused. The default value is 10.
maxProcessors:
The maximum number of request processing threads to be
created by this Connector, which therefore determines
the maximum number of simultaneous requests that can
be handled. If not specified, this attribute is set to
20.
NOTE:For Apache 1.3 on Unix there is a 1 to 1 mapping
between httpd processes and Ajp13Processors. You must
configure maxProcessors to be greater than or equal to
the maximum number of httpd processes your Apache web
server spawns.
minProcessors:
The number of request processing threads that will be
created when this Connector is first started. This
attribute should be set to a value smaller than that
set for maxProcessors. The default value is 5.
I hope this gets you started on a productive path.
/mde/
just my two cents . . . .
__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>