Hey guys,

I'm having issue finding why I am receiving the following error from my
tomcat application:

(java.net.SocketTimeoutException: Read timed out)

I have a tomcat application that receives it's transactions from an
apache proxy.  The apache proxy receives it's traffic from a remote
complex.

So ... (web traffic -> remote complex -> apache proxy -> tomcat
application).

My current settings are as follows for the apache-worker (2.2) proxy
(httpd.conf):

MaxKeepAliveRequests 100
KeepAliveTimeout 5

<IfModule worker.c>
ServerLimit         20
ThreadLimit         15
StartServers         5
MaxClients        300
MinSpareThreads      5
MaxSpareThreads     100
ThreadsPerChild     15
MaxRequestsPerChild  100
</IfModule>


My current settings are as follows for the tomcat app (server.xml):

                maxThreads="300"
                minSpareThreads="100"
                maxSpareThreads="300"
                maxKeepAliveRequest="300"
                enableLookups="false"
                connectionTimeout="20000"
                disableUploadTimeout="true"


Should these 2 files be a little more similar or any suggestions for
optimization is appreciated.

Using Tomcat 6 and Apache worker 2.2.6

Thanks -

-- 
Luis Angarita
Systems Administrator
Service Apps % Infrastructure
Core Services - AOL, LLC



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to