> I am using Tomcat 4.0 on a server with heavy traffic.  Randomly under
these
> conditions users get a "Page can not be displayed" error, yet the server's
> 4 cpus are not completely maxed out and the Tomcat/Java VM still has
available
> memory.  The logs don't display any problem.  Anyone seen this before?
> It is not an easily reproducible condition.

If the situation doesn't degrade over time, then it's just that you should
raise the number of processors the HTTP connector is allowed to use.

    <Connector className="org.apache.catalina.connector.http.HttpConnector"
               port="8080" minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="8443"
               acceptCount="10" debug="0" connectionTimeout="60000"/>

Change "maxProcessors" and give it a higher value.

Remy


--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to