You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by JNeuhoff <ne...@mhccorp.com> on 2007/01/29 11:57:05 UTC

TCP Connection Aborted problems

As a followup from the
http://www.nabble.com/mod_jk-replacement--tf3050993.html I am still looking
for a working solution of the err=-53 (TCP Connection aborted) problem.

To summarize what is happening: 

We have a Windows 2003 server (with Apache 2.0.59, mod_jk 1.2.20 and Tomcat
5.5.17).

It was subjected by 2 client workstations from the same subnet to a
stresstest
involving 2 users. These were rapidly clicking on weblinks within our
website. Their click-rate was faster on purpose than the Tomcat service
could handle. The average response time from our servlet
is about 0.15 seconds, but can go up to 0.5 seconds or more
depending on server load and how many MySQL database queries
it has to do.

After just a minute or two, the server became unresponsive.
Even though both Apache and Tomcat continued to run and receive
requests the underlying TCP connections for the responses
resulted in err=53 or err=54 conditions, hence the web browsing
clients became unable to receive the responses. Even a re-start
of the Apache and Tomcat NT services didn't clear up this stalemate
scenario with the TCP connections.

Judgeing by the mod_jk.log entries, mod_jk tries to connect to Tomcat, and
part of it is doing a ping to Tomcat and waiting in vain for a pong. Is
there a way to configure the connection pool so that it will really clear up
stale TCP connections before re-using them?

We using the following configuration:

httpd.conf:

....
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves
<IfModule mpm_winnt.c>
ThreadsPerChild 250
MaxRequestsPerChild  0
</IfModule>
....
### mod_jk 1.x configuration for connecting to Tomcat 5.5                                 
                                                                                          
# Load mod_jk module                                                                      
# Update this path to match your modules location                                         
LoadModule    jk_module  modules/mod_jk.so                                                
                                                                                          
Declare the module for <IfModule directive>                                               
#AddModule     mod_jk.c                                                                   
                                                                                          
# Where to find workers.properties                                                        
# Update this path to match your conf directory location (put
workers.properties next to h
JkWorkersFile "C:/Program Files/Apache Software Foundation/Tomcat
5.5/conf/workers.propert
                                                                                          
# Where to put jk logs                                                                    
# Update this path to match your logs directory location (put mod_jk.log
next to access_lo
JkLogFile     "C:/Program Files/Apache Software Foundation/Tomcat
5.5/logs/mod_jk.log"    
                                                                                          
# Set the jk log level [debug/error/info]                                                 
#JkLogLevel    info                                                                       
JkLogLevel    debug                                                                       
                                                                                          
# Select the log format                                                                   
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "                                                
                                                                                          
# JkOptions indicate to send SSL KEY SIZE,                                                
JkOptions     +ForwardKeySize +ForwardURICompat -ForwardDirectories                       
                                                                                          
# JkRequestLogFormat set the request format                                               
JkRequestLogFormat     "%w %V %T %r %s"                                                   
                                                                                          
# Send everything for context /jsp-examples to worker named worker1 (ajp13)               
JkMount  /jsp-examples/* ajp13                                                            
                                                                                          
# Send everything for context /servlets-examples to worker named worker1
(ajp13)          
JkMount  /servletsp-examples/* ajp13                                                      
                                                                                          
# Send everything for context /manager to worker named worker1 (ajp13)                    
JkMount  /manager/* ajp13                                                                 
                                                                                          
# Send everything for context /ohpr to worker named worker1 (ajp13)                       
JkMount  /ohpr/* ajp13                                                                    
                                                                                          
# Send everything for context /demo-b to worker named worker1 (ajp13)                     
JkMount  /demo-b/* ajp13                                                                  
......                                                                                          



workers.properties:

# Define 1 real worker using ajp13
worker.list=ajp13

# Set properties for worker1 (ajp13)
worker.ajp13.type=ajp13
worker.ajp13.host=localhost
worker.ajp13.port=8009
worker.ajp13.connection_pool_timeout=600
worker.ajp13.connection_pool_minsize=10
worker.ajp13.connect_timeout=15000
worker.ajp13.prepost_timeout=10000



server.xml:


....
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009"
               enableLookups="false" redirectPort="8443" protocol="AJP/1.3"
connectionTimeout="600000"/>
....


web.xml for our servlet application:

....
    <session-config>
      <session-timeout>15</session-timeout>    <!-- 15 minutes -->
    </session-config>
....



mod_jk.log extract illustrating a blocked TCP connection between Apache and
Tomcat:

.....

[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (575):
Attempting to map URI '/ohpr/servlet/Browse' from 5 maps
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
Attempting to map context URI '/servletsp-examples/*=ajp13' source 'JkMount'
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
Attempting to map context URI '/jsp-examples/*=ajp13' source 'JkMount'
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
Attempting to map context URI '/manager/*=ajp13' source 'JkMount'
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
Attempting to map context URI '/demo-b/*=ajp13' source 'JkMount'
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
Attempting to map context URI '/ohpr/*=ajp13' source 'JkMount'
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (602):
Found a wildchar match '/ohpr/*=ajp13'
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] mod_jk.c (1999): Into handler
jakarta-servlet worker=ajp13 r->proxyreq=0
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_worker.c (114): found a
worker ajp13
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_worker.c (290): Found
worker type 'ajp13'
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] mod_jk.c (584): Service
protocol=HTTP/1.1 method=GET host=daohpr1.essex.ac.uk addr=155.245.69.201
name=daohprw2-a port=80 auth=(null) user=(null) laddr=155.245.69.32
raddr=155.245.69.201
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (2315):
acquired connection pool slot=78
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (548): ajp
marshaling done
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (1771):
processing ajp13 with 2 retries
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_connect.c (335): socket
TCP_NODELAY set to On
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_connect.c (433): trying to
connect socket 5776 to 127.0.0.1:8009
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_connect.c (459): socket
5776 connected to 127.0.0.1:8009
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (847):
Connected socket 5776 to (127.0.0.1:8009)
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (893):
sending to ajp13 pos=4 len=5 max=16
[Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (893): 0000   
12 34 00 01 0A 00 00 00 00 00 00 00 00 00 00 00  - .4..............
[Wed Jan 24 13:02:41 2007] [0284:3868] [info]  jk_ajp_common.c (807):
timeout in reply pong
[Wed Jan 24 13:02:41 2007] [0284:3868] [info]  jk_ajp_common.c (1259):
(ajp13) error connecting to the backend server (errno=0)
[Wed Jan 24 13:02:41 2007] [0284:3868] [info]  jk_ajp_common.c (1916):
(ajp13) sending request to tomcat failed,  recoverable operation attempt=1
[Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_connect.c (335): socket
TCP_NODELAY set to On
[Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_connect.c (433): trying to
connect socket 5776 to 127.0.0.1:8009
[Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_connect.c (459): socket
5776 connected to 127.0.0.1:8009
[Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_ajp_common.c (847):
Connected socket 5776 to (127.0.0.1:8009)
[Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_ajp_common.c (893):
sending to ajp13 pos=4 len=5 max=16
[Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_ajp_common.c (893): 0000   
12 34 00 01 0A 00 00 00 00 00 00 00 00 00 00 00  - .4..............
[Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (807):
timeout in reply pong
[Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (1259):
(ajp13) error connecting to the backend server (errno=0)
[Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (1916):
(ajp13) sending request to tomcat failed,  recoverable operation attempt=2
[Wed Jan 24 13:02:56 2007] [0284:3868] [error] jk_ajp_common.c (1928):
(ajp13) Connecting to tomcat failed. Tomcat is probably not started or is
listening on the wrong port
[Wed Jan 24 13:02:56 2007] [0284:3868] [debug] jk_ajp_common.c (2258):
recycling connection pool slot=40 for worker ajp13
[Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (807):
timeout in reply pong
[Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (1259):
(ajp13) error connecting to the backend server (errno=0)
[Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (1916):
(ajp13) sending request to tomcat failed,  recoverable operation attempt=2
[Wed Jan 24 13:02:56 2007] [0284:3868] [error] jk_ajp_common.c (1928):
(ajp13) Connecting to tomcat failed. Tomcat is probably not started or is
listening on the wrong port
[Wed Jan 24 13:02:56 2007] [0284:3868] [debug] jk_ajp_common.c (2258):
recycling connection pool slot=40 for worker ajp13

.....



-- 
View this message in context: http://www.nabble.com/TCP-Connection-Aborted-problems-tf3135245.html#a8687421
Sent from the Tomcat - User mailing list archive at Nabble.com.


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


Re: TCP Connection Aborted problems

Posted by JNeuhoff <ne...@mhccorp.com>.
Here is the continuation of the thread dump:

[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x09516170> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "http-8080-Processor5"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=6 tid=0x0339abe8
[2007-01-30 12:24:02] [info] nid=0x720
[2007-01-30 12:24:02] [info] in Object.wait()
[2007-01-30 12:24:02] [info] [0x036df000..0x036dfb6c]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x09516208> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x09516208> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "http-8080-Processor4"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=6 tid=0x0339a088
[2007-01-30 12:24:02] [info] nid=0x860
[2007-01-30 12:24:02] [info] in Object.wait()
[2007-01-30 12:24:02] [info] [0x0369f000..0x0369fbec]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x095162a0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x095162a0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "http-8080-Processor3"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=6 tid=0x0337b798
[2007-01-30 12:24:02] [info] nid=0x85c
[2007-01-30 12:24:02] [info] in Object.wait()
[2007-01-30 12:24:02] [info] [0x0365f000..0x0365fc6c]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x09516338> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x09516338> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "http-8080-Processor2"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=6 tid=0x0337bdc0
[2007-01-30 12:24:02] [info] nid=0x8e4
[2007-01-30 12:24:02] [info] in Object.wait()
[2007-01-30 12:24:02] [info] [0x0361f000..0x0361fcec]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x095163d0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x095163d0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "http-8080-Processor1"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=6 tid=0x0337bba0
[2007-01-30 12:24:02] [info] nid=0x558
[2007-01-30 12:24:02] [info] in Object.wait()
[2007-01-30 12:24:02] [info] [0x035df000..0x035dfd6c]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x09516468> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x09516468> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info]
"ContainerBackgroundProcessor[StandardEngine[Catalina]]"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=6 tid=0x0328c008
[2007-01-30 12:24:02] [info] nid=0x4ac
[2007-01-30 12:24:02] [info] waiting on condition
[2007-01-30 12:24:02] [info] [0x0359f000..0x0359f9ec]
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.sleep(Native Method)
[2007-01-30 12:24:02] [info] 	at
org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1547)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "Thread-1"
[2007-01-30 12:24:02] [info] prio=6 tid=0x02ec2b60
[2007-01-30 12:24:02] [info] nid=0x840
[2007-01-30 12:24:02] [info] runnable
[2007-01-30 12:24:02] [info] [0x030df000..0x030dfdec]
[2007-01-30 12:24:02] [info] 	at
java.net.PlainSocketImpl.socketAccept(Native Method)
[2007-01-30 12:24:02] [info] 	at java.net.PlainSocketImpl.accept(Unknown
Source)
[2007-01-30 12:24:02] [info] 	- locked <0x094bfe70> (a
java.net.SocksSocketImpl)
[2007-01-30 12:24:02] [info] 	at java.net.ServerSocket.implAccept(Unknown
Source)
[2007-01-30 12:24:02] [info] 	at java.net.ServerSocket.accept(Unknown
Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.catalina.core.StandardServer.await(StandardServer.java:388)
[2007-01-30 12:24:02] [info] 	at
org.apache.catalina.startup.Catalina.await(Catalina.java:615)
[2007-01-30 12:24:02] [info] 	at
org.apache.catalina.startup.Catalina.start(Catalina.java:575)
[2007-01-30 12:24:02] [info] 	at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[2007-01-30 12:24:02] [info] 	at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[2007-01-30 12:24:02] [info] 	at java.lang.reflect.Method.invoke(Unknown
Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
[2007-01-30 12:24:02] [info] 	at
org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "Low Memory Detector"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=6 tid=0x00a9ba48
[2007-01-30 12:24:02] [info] nid=0x960
[2007-01-30 12:24:02] [info] runnable
[2007-01-30 12:24:02] [info] [0x00000000..0x00000000]
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "CompilerThread0"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=10 tid=0x00a9a750
[2007-01-30 12:24:02] [info] nid=0x904
[2007-01-30 12:24:02] [info] waiting on condition
[2007-01-30 12:24:02] [info] [0x00000000..0x02e1f84c]
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "Signal Dispatcher"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=10 tid=0x00a999d8
[2007-01-30 12:24:02] [info] nid=0x350
[2007-01-30 12:24:02] [info] waiting on condition
[2007-01-30 12:24:02] [info] [0x00000000..0x00000000]
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "Finalizer"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=8 tid=0x0034fe80
[2007-01-30 12:24:02] [info] nid=0x894
[2007-01-30 12:24:02] [info] in Object.wait()
[2007-01-30 12:24:02] [info] [0x02d9f000..0x02d9fc6c]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x091c0880> (a
java.lang.ref.ReferenceQueue$Lock)
[2007-01-30 12:24:02] [info] 	at java.lang.ref.ReferenceQueue.remove(Unknown
Source)
[2007-01-30 12:24:02] [info] 	- locked <0x091c0880> (a
java.lang.ref.ReferenceQueue$Lock)
[2007-01-30 12:24:02] [info] 	at java.lang.ref.ReferenceQueue.remove(Unknown
Source)
[2007-01-30 12:24:02] [info] 	at
java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "Reference Handler"
[2007-01-30 12:24:02] [info] daemon
[2007-01-30 12:24:02] [info] prio=10 tid=0x0034fb30
[2007-01-30 12:24:02] [info] nid=0x3c0
[2007-01-30 12:24:02] [info] in Object.wait()
[2007-01-30 12:24:02] [info] [0x02d5f000..0x02d5fcec]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x091c0500> (a
java.lang.ref.Reference$Lock)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
[2007-01-30 12:24:02] [info] 	- locked <0x091c0500> (a
java.lang.ref.Reference$Lock)
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "main"
[2007-01-30 12:24:02] [info] prio=6 tid=0x00344b70
[2007-01-30 12:24:02] [info] nid=0x744
[2007-01-30 12:24:02] [info] runnable
[2007-01-30 12:24:02] [info] [0x00000000..0x0006f5bc]
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "VM Thread"
[2007-01-30 12:24:02] [info] prio=10 tid=0x00a92978
[2007-01-30 12:24:02] [info] nid=0x514
[2007-01-30 12:24:02] [info] runnable
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info] "VM Periodic Task Thread"
[2007-01-30 12:24:02] [info] prio=10 tid=0x00a99930
[2007-01-30 12:24:02] [info] nid=0xab4
[2007-01-30 12:24:02] [info] waiting on condition
[2007-01-30 12:24:02] [info]
[2007-01-30 12:24:02] [info]
-- 
View this message in context: http://www.nabble.com/TCP-Connection-Aborted-problems-tf3135245.html#a8709146
Sent from the Tomcat - User mailing list archive at Nabble.com.


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


Re: TCP Connection Aborted problems

Posted by JNeuhoff <ne...@mhccorp.com>.
> I can see from your thread dump, that you are using the native apr 
> connector. Since we had a couple of bug fix releases for apr, it would 
> be good, if you could remove the apr connector (the tcnative DLL) before 
> doing your next test.

We just did another stresstest, with the apr connector removed. It involved
2 persons who were rapidly clicking on links within the web site, at a
faster rate than Tomcat could respond to. This time it took us more than 10
minutes instead of the usual 2 minutes to bring the test server down to its
knees. We also noticed slower average response times.
I have uploaded all the relevant log files to one of our servers, see
separate e-mail on this.

I am hoping to get to a state where the Apache/Tomcat web service would
recover automatically after a heavy stress load, without becoming
unresponsive due to TCP Connections Aborted errors.

Regards

Juergen


[2007-01-30 12:24:00] [info] Console CTRL+BREAK event signaled
[2007-01-30 12:24:00] [info] Full thread dump Java HotSpot(TM) Client VM
(1.5.0_10-b03 mixed mode, sharing):
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor76" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x0311a208 
[2007-01-30 12:24:00] [info] nid=0xaac 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04fff000..0x04fff9ec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09bad960> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09bad960> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor74" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f9e7d0 
[2007-01-30 12:24:00] [info] nid=0xc8 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04f7f000..0x04f7fa6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09bad748> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09bad748> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor73" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02fa3aa8 
[2007-01-30 12:24:00] [info] nid=0xc58 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04eff000..0x04effaec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09bad530> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09bad530> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor72" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02fadbe8 
[2007-01-30 12:24:00] [info] nid=0x76c 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04ebf000..0x04ebfc6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09b8c090> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09b8c090> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor69" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x03102e70 
[2007-01-30 12:24:00] [info] nid=0x92c 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04dff000..0x04dff9ec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09b8bd88> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09b8bd88> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor66" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02fa8348 
[2007-01-30 12:24:00] [info] nid=0xad8 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04d3f000..0x04d3fb6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09b3e3a8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09b3e3a8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor65" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x0303b2c0 
[2007-01-30 12:24:00] [info] nid=0xf10 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04cff000..0x04cffbec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09b3e190> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09b3e190> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor63" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f984b0 
[2007-01-30 12:24:00] [info] nid=0x3e8 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04c7f000..0x04c7fc6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09aed378> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09aed378> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor62" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x03053c98 
[2007-01-30 12:24:00] [info] nid=0xe98 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04c3f000..0x04c3fcec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09ae92c0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09ae92c0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor58" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x03096190 
[2007-01-30 12:24:00] [info] nid=0x128 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04b3f000..0x04b3fc6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09ae0fb0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09ae0fb0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor57" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x030964a0 
[2007-01-30 12:24:00] [info] nid=0xae8 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04aff000..0x04affcec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09ae0d98> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09ae0d98> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor56" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x0303e630 
[2007-01-30 12:24:00] [info] nid=0xf3c 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04abf000..0x04abfaec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09acaf88> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09acaf88> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor55" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x0303da28 
[2007-01-30 12:24:00] [info] nid=0xe04 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04a7f000..0x04a7fb6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09acad78> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09acad78> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor54" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x03098cb8 
[2007-01-30 12:24:00] [info] nid=0xb38 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x04a3f000..0x04a3fbec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09ac8df8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09ac8df8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor52" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x03097ce8 
[2007-01-30 12:24:00] [info] nid=0xaec 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x049bf000..0x049bfcec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09aa7858> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09aa7858> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor50" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x03040180 
[2007-01-30 12:24:00] [info] nid=0xa44 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0493f000..0x0493f9ec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09aa7408> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09aa7408> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor49" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x0303ff30 
[2007-01-30 12:24:00] [info] nid=0xb08 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x048ff000..0x048ffa6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09aa71f0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09aa71f0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor47" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x03054408 
[2007-01-30 12:24:00] [info] nid=0x3b4 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0487f000..0x0487fd6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09aa61a0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09aa61a0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor46" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02fd80d8 
[2007-01-30 12:24:00] [info] nid=0xd58 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0483f000..0x0483faec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09aa5d20> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09aa5d20> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor45" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x030545d0 
[2007-01-30 12:24:00] [info] nid=0xebc 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x047ff000..0x047ffbec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09aa5b08> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09aa5b08> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor44" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02fb0408 
[2007-01-30 12:24:00] [info] nid=0x8c 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x047bf000..0x047bfa6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09a70c70> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09a70c70> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor43" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x03074e68 
[2007-01-30 12:24:00] [info] nid=0x5bc 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0477f000..0x0477faec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09a70a60> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09a70a60> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor41" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f75b60 
[2007-01-30 12:24:00] [info] nid=0xc54 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x046ff000..0x046ffb6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09a70628> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09a70628> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor40" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f45cb0 
[2007-01-30 12:24:00] [info] nid=0x584 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x046bf000..0x046bfd6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x098900b8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x098900b8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor39" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f44fc8 
[2007-01-30 12:24:00] [info] nid=0xc34 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0467f000..0x0467f9ec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x098901c0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x098901c0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor38" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f442e8 
[2007-01-30 12:24:00] [info] nid=0x200 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0463f000..0x0463fa6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09890258> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09890258> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor35" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f50410 
[2007-01-30 12:24:00] [info] nid=0xc88 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0457f000..0x0457fbec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x098903d0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x098903d0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor34" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f4f7f8 
[2007-01-30 12:24:00] [info] nid=0x9e4 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0453f000..0x0453fc6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x098904d8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x098904d8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor33" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f4f3e0 
[2007-01-30 12:24:00] [info] nid=0xc2c 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x044ff000..0x044ffcec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x098905e0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x098905e0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor32" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f4c8d0 
[2007-01-30 12:24:00] [info] nid=0xb70 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x044bf000..0x044bfd6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x098906e8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x098906e8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor31" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f4e9c0 
[2007-01-30 12:24:00] [info] nid=0xde4 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0447f000..0x0447f9ec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x098907f0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x098907f0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor30" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f4dd70 
[2007-01-30 12:24:00] [info] nid=0xab0 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x0443f000..0x0443fa6c]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x098908f8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x098908f8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:00] [info] 
[2007-01-30 12:24:00] [info] "TP-Processor29" 
[2007-01-30 12:24:00] [info] daemon 
[2007-01-30 12:24:00] [info] prio=6 tid=0x02f537e0 
[2007-01-30 12:24:00] [info] nid=0xf4c 
[2007-01-30 12:24:00] [info] in Object.wait() 
[2007-01-30 12:24:00] [info] [0x043ff000..0x043ffaec]
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:00] [info] 	- waiting on <0x09890a00> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:00] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:00] [info] 	- locked <0x09890a00> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:00] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor27" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x03015f38 
[2007-01-30 12:24:01] [info] nid=0x97c 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0437f000..0x0437fbec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09890a98> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09890a98> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor26" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x03017738 
[2007-01-30 12:24:01] [info] nid=0xdc8 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0433f000..0x0433fc6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09890ba0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09890ba0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor25" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x03014a10 
[2007-01-30 12:24:01] [info] nid=0xf20 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x042ff000..0x042ffcec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09890ca8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09890ca8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor24" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x03013348 
[2007-01-30 12:24:01] [info] nid=0xe7c 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x042bf000..0x042bf9ec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09845b80> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09845b80> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor23" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x030126b8 
[2007-01-30 12:24:01] [info] nid=0xe88 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0427f000..0x0427fa6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09845968> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09845968> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor22" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x03011a28 
[2007-01-30 12:24:01] [info] nid=0x36c 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0423f000..0x0423faec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09845750> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09845750> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor20" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x02fec9e8 
[2007-01-30 12:24:01] [info] nid=0x664 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x041bf000..0x041bfbec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09845118> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09845118> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor18" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x02feb1f8 
[2007-01-30 12:24:01] [info] nid=0xed8 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0413f000..0x0413fcec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09844d50> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09844d50> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor17" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x02feaf80 
[2007-01-30 12:24:01] [info] nid=0x73c 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x040ff000..0x040ffd6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09844b38> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09844b38> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor16" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x02fe9808 
[2007-01-30 12:24:01] [info] nid=0xc94 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x040bf000..0x040bf9ec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09844500> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09844500> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor15" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x0305cc50 
[2007-01-30 12:24:01] [info] nid=0xf18 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0407f000..0x0407fa6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x098442e8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x098442e8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor14" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x02fef950 
[2007-01-30 12:24:01] [info] nid=0xa88 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0403f000..0x0403faec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x098440d0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x098440d0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor11" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x03062920 
[2007-01-30 12:24:01] [info] nid=0xecc 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03f7f000..0x03f7fc6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09842110> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09842110> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor10" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x02f8ad38 
[2007-01-30 12:24:01] [info] nid=0xd4c 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03f3f000..0x03f3fcec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09841ef8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09841ef8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor8" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x02ff0b88 
[2007-01-30 12:24:01] [info] nid=0xbcc 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03ebf000..0x03ebfbec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09827000> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09827000> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor7" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x03130e58 
[2007-01-30 12:24:01] [info] nid=0xeb4 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03e7f000..0x03e7fb6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09826de8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09826de8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Monitor" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033c6060 
[2007-01-30 12:24:01] [info] nid=0x850 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03d5f000..0x03d5fa6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x0949d838> (a
org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable.run(ThreadPool.java:559)
[2007-01-30 12:24:01] [info] 	- locked <0x0949d838> (a
org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor4" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033ae3b8 
[2007-01-30 12:24:01] [info] nid=0x45c 
[2007-01-30 12:24:01] [info] runnable 
[2007-01-30 12:24:01] [info] [0x03d1f000..0x03d1faec]
[2007-01-30 12:24:01] [info] 	at
java.net.PlainSocketImpl.socketAccept(Native Method)
[2007-01-30 12:24:01] [info] 	at java.net.PlainSocketImpl.accept(Unknown
Source)
[2007-01-30 12:24:01] [info] 	- locked <0x0949c4b8> (a
java.net.SocksSocketImpl)
[2007-01-30 12:24:01] [info] 	at java.net.ServerSocket.implAccept(Unknown
Source)
[2007-01-30 12:24:01] [info] 	at java.net.ServerSocket.accept(Unknown
Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.jk.common.ChannelSocket.accept(ChannelSocket.java:293)
[2007-01-30 12:24:01] [info] 	at
org.apache.jk.common.ChannelSocket.acceptConnections(ChannelSocket.java:647)
[2007-01-30 12:24:01] [info] 	at
org.apache.jk.common.ChannelSocket$SocketAcceptor.runIt(ChannelSocket.java:857)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "TP-Processor1" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033b5748 
[2007-01-30 12:24:01] [info] nid=0xac4 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03c5f000..0x03c5fc6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x0949d398> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x0949d398> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Monitor" 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033aaac0 
[2007-01-30 12:24:01] [info] nid=0xca0 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03c1f000..0x03c1fcec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515570> (a
org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable.run(ThreadPool.java:559)
[2007-01-30 12:24:01] [info] 	- locked <0x09515570> (a
org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor25" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a9d28 
[2007-01-30 12:24:01] [info] nid=0xce8 
[2007-01-30 12:24:01] [info] runnable 
[2007-01-30 12:24:01] [info] [0x03bdf000..0x03bdfd6c]
[2007-01-30 12:24:01] [info] 	at
java.net.PlainSocketImpl.socketAccept(Native Method)
[2007-01-30 12:24:01] [info] 	at java.net.PlainSocketImpl.accept(Unknown
Source)
[2007-01-30 12:24:01] [info] 	- locked <0x09305310> (a
java.net.SocksSocketImpl)
[2007-01-30 12:24:01] [info] 	at java.net.ServerSocket.implAccept(Unknown
Source)
[2007-01-30 12:24:01] [info] 	at java.net.ServerSocket.accept(Unknown
Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.net.DefaultServerSocketFactory.acceptSocket(DefaultServerSocketFactory.java:60)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.net.PoolTcpEndpoint.acceptSocket(PoolTcpEndpoint.java:407)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:70)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor24" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a9170 
[2007-01-30 12:24:01] [info] nid=0x740 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03b9f000..0x03b9f9ec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x095156c0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x095156c0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor23" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a8478 
[2007-01-30 12:24:01] [info] nid=0x524 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03b5f000..0x03b5fa6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515758> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515758> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor22" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a7820 
[2007-01-30 12:24:01] [info] nid=0x8a4 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03b1f000..0x03b1faec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x095157f0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x095157f0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor21" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a6bc8 
[2007-01-30 12:24:01] [info] nid=0x6d4 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03adf000..0x03adfb6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515888> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515888> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor20" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a5f70 
[2007-01-30 12:24:01] [info] nid=0x448 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03a9f000..0x03a9fbec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515920> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515920> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor19" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a53b8 
[2007-01-30 12:24:01] [info] nid=0x81c 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03a5f000..0x03a5fc6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x095159b8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x095159b8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor18" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a46c0 
[2007-01-30 12:24:01] [info] nid=0x5c4 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x03a1f000..0x03a1fcec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515a50> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515a50> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor17" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a3a68 
[2007-01-30 12:24:01] [info] nid=0xfd4 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x039df000..0x039dfd6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515ae8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515ae8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor16" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a2eb0 
[2007-01-30 12:24:01] [info] nid=0x2a8 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0399f000..0x0399f9ec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515b80> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515b80> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor15" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a21b8 
[2007-01-30 12:24:01] [info] nid=0x428 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0395f000..0x0395fa6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515c18> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515c18> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor14" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a15c0 
[2007-01-30 12:24:01] [info] nid=0x730 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0391f000..0x0391faec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515cb0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515cb0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor13" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x033a09c8 
[2007-01-30 12:24:01] [info] nid=0x588 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x038df000..0x038dfb6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515d48> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515d48> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor12" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x0339fe90 
[2007-01-30 12:24:01] [info] nid=0x8d4 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0389f000..0x0389fbec]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515de0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515de0> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:01] [info] 
[2007-01-30 12:24:01] [info] "http-8080-Processor11" 
[2007-01-30 12:24:01] [info] daemon 
[2007-01-30 12:24:01] [info] prio=6 tid=0x0339f238 
[2007-01-30 12:24:01] [info] nid=0xa94 
[2007-01-30 12:24:01] [info] in Object.wait() 
[2007-01-30 12:24:01] [info] [0x0385f000..0x0385fc6c]
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:01] [info] 	- waiting on <0x09515e78> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:01] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:01] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:01] [info] 	- locked <0x09515e78> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info] 
[2007-01-30 12:24:02] [info] "http-8080-Processor10" 
[2007-01-30 12:24:02] [info] daemon 
[2007-01-30 12:24:02] [info] prio=6 tid=0x0339e680 
[2007-01-30 12:24:02] [info] nid=0xdf0 
[2007-01-30 12:24:02] [info] in Object.wait() 
[2007-01-30 12:24:02] [info] [0x0381f000..0x0381fcec]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x09515f10> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x09515f10> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info] 
[2007-01-30 12:24:02] [info] "http-8080-Processor9" 
[2007-01-30 12:24:02] [info] daemon 
[2007-01-30 12:24:02] [info] prio=6 tid=0x0339dac8 
[2007-01-30 12:24:02] [info] nid=0x72c 
[2007-01-30 12:24:02] [info] in Object.wait() 
[2007-01-30 12:24:02] [info] [0x037df000..0x037dfd6c]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x09515fa8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x09515fa8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info] 
[2007-01-30 12:24:02] [info] "http-8080-Processor8" 
[2007-01-30 12:24:02] [info] daemon 
[2007-01-30 12:24:02] [info] prio=6 tid=0x0339cf10 
[2007-01-30 12:24:02] [info] nid=0x4bc 
[2007-01-30 12:24:02] [info] in Object.wait() 
[2007-01-30 12:24:02] [info] [0x0379f000..0x0379f9ec]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x09516040> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x09516040> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info] 
[2007-01-30 12:24:02] [info] "http-8080-Processor7" 
[2007-01-30 12:24:02] [info] daemon 
[2007-01-30 12:24:02] [info] prio=6 tid=0x0339c3f8 
[2007-01-30 12:24:02] [info] nid=0x5c0 
[2007-01-30 12:24:02] [info] in Object.wait() 
[2007-01-30 12:24:02] [info] [0x0375f000..0x0375fa6c]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x095160d8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-30 12:24:02] [info] 	at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656)
[2007-01-30 12:24:02] [info] 	- locked <0x095160d8> (a
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
[2007-01-30 12:24:02] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-30 12:24:02] [info] 
[2007-01-30 12:24:02] [info] "http-8080-Processor6" 
[2007-01-30 12:24:02] [info] daemon 
[2007-01-30 12:24:02] [info] prio=6 tid=0x0339b7a0 
[2007-01-30 12:24:02] [info] nid=0xf44 
[2007-01-30 12:24:02] [info] in Object.wait() 
[2007-01-30 12:24:02] [info] [0x0371f000..0x0371faec]
[2007-01-30 12:24:02] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-30 12:24:02] [info] 	- waiting on <0x09516170>
-- 
View this message in context: http://www.nabble.com/TCP-Connection-Aborted-problems-tf3135245.html#a8709139
Sent from the Tomcat - User mailing list archive at Nabble.com.


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


Re: TCP Connection Aborted problems

Posted by Rainer Jung <ra...@kippdata.de>.
The thread dump basically tells us, that your tomcat is idle. Nothing is 
in progress there. This is in contrast to mod_jk having problems to 
connect to tomcat.

I can see from your thread dump, that you are using the native apr 
connector. Since we had a couple of bug fix releases for apr, it would 
be good, if you could remove the apr connector (the tcnative DLL) before 
doing your next test.

Regards,

Rainer

JNeuhoff wrote:
> We'll repeat the stresstest with subsequent threaddump tomorrow morning.
> However, I just experienced the same TCP Connections aborted scenario on
> another test server running the same web service ('/demo-e/servlet'), and I
> managed to get a threaddump from there:
> 
> [2007-01-29 17:21:07] [info] Console CTRL+BREAK event signaled
> [2007-01-29 17:21:07] [info] Full thread dump Java HotSpot(TM) Client VM
> (1.5.0_09-b03 mixed mode, sharing):
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-3" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x03943448 
> [2007-01-29 17:21:07] [info] nid=0xeb4 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0448f000..0x0448fb6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0965eb60> (a
> org.apache.tomcat.util.net.AprEndpoint$Worker)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Worker.await(AprEndpoint.java:1255)
> [2007-01-29 17:21:07] [info] 	- locked <0x0965eb60> (a
> org.apache.tomcat.util.net.AprEndpoint$Worker)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1280)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-2" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x0309d090 
> [2007-01-29 17:21:07] [info] nid=0x11b0 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x043ef000..0x043efcec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b1b8> (a
> org.apache.tomcat.util.net.AprEndpoint$Worker)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Worker.await(AprEndpoint.java:1255)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b1b8> (a
> org.apache.tomcat.util.net.AprEndpoint$Worker)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1280)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Poller-7" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x0393dcf0 
> [2007-01-29 17:21:07] [info] nid=0x17e8 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x043af000..0x043afd6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b238> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b238> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Poller-6" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x0391d030 
> [2007-01-29 17:21:07] [info] nid=0x1150 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0436f000..0x0436f9ec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b2c8> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b2c8> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Poller-5" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x038fc370 
> [2007-01-29 17:21:07] [info] nid=0x114c 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0432f000..0x0432fa6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b358> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b358> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Poller-4" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x038db6b0 
> [2007-01-29 17:21:07] [info] nid=0x5bc 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x042ef000..0x042efaec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b3e8> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b3e8> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Poller-3" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x038ba9f0 
> [2007-01-29 17:21:07] [info] nid=0x17dc 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x042af000..0x042afb6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b478> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b478> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Poller-2" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x03839330 
> [2007-01-29 17:21:07] [info] nid=0x1698 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0426f000..0x0426fbec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b508> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b508> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Poller-1" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x03838508 
> [2007-01-29 17:21:07] [info] nid=0xb34 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0422f000..0x0422fc6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b598> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b598> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-1" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x03838220 
> [2007-01-29 17:21:07] [info] nid=0xd5c 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x041ef000..0x041efcec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954b9e8> (a
> org.apache.tomcat.util.net.AprEndpoint$Worker)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Worker.await(AprEndpoint.java:1255)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954b9e8> (a
> org.apache.tomcat.util.net.AprEndpoint$Worker)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1280)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Poller-0" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x0342fab8 
> [2007-01-29 17:21:07] [info] nid=0x10a0 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x041af000..0x041afd6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954ba68> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954ba68> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "ajp-8009-Acceptor-0" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x0342f758 
> [2007-01-29 17:21:07] [info] nid=0x1280 
> [2007-01-29 17:21:07] [info] runnable 
> [2007-01-29 17:21:07] [info] [0x0416f000..0x0416f9ec]
> [2007-01-29 17:21:07] [info] 	at org.apache.tomcat.jni.Socket.accept(Native
> Method)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Acceptor.run(AprEndpoint.java:999)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Sendfile-0" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x03453108 
> [2007-01-29 17:21:07] [info] nid=0x1348 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0412f000..0x0412fa6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954bb68> (a
> org.apache.tomcat.util.net.AprEndpoint$Sendfile)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Sendfile.run(AprEndpoint.java:1486)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954bb68> (a
> org.apache.tomcat.util.net.AprEndpoint$Sendfile)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-1" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x034544f8 
> [2007-01-29 17:21:07] [info] nid=0x134c 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x040ef000..0x040efc6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954bc10> (a
> org.apache.tomcat.util.net.AprEndpoint$Worker)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Worker.await(AprEndpoint.java:1255)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954bc10> (a
> org.apache.tomcat.util.net.AprEndpoint$Worker)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1280)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Poller-7" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x034df498 
> [2007-01-29 17:21:07] [info] nid=0x1268 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x040af000..0x040afb6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954bc90> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954bc90> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Poller-6" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x0341daf0 
> [2007-01-29 17:21:07] [info] nid=0x1350 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0406f000..0x0406fcec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954bd20> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954bd20> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Poller-5" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x037cf020 
> [2007-01-29 17:21:07] [info] nid=0x112c 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0402f000..0x0402faec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954bdb0> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954bdb0> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Poller-4" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x037ae4b0 
> [2007-01-29 17:21:07] [info] nid=0xcbc 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x03fef000..0x03fefd6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954be40> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954be40> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Poller-3" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x034dfe68 
> [2007-01-29 17:21:07] [info] nid=0x17a4 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x03faf000..0x03fafbec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954bed0> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954bed0> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Poller-2" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x034dc618 
> [2007-01-29 17:21:07] [info] nid=0x978 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0376f000..0x0376f9ec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x0954bf60> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954bf60> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Poller-1" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x034bbc58 
> [2007-01-29 17:21:07] [info] nid=0x5f8 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x0372f000..0x0372fa6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x094573c8> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x094573c8> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Poller-0" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x034553b8 
> [2007-01-29 17:21:07] [info] nid=0x2c8 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x036ef000..0x036efaec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x09457458> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
> [2007-01-29 17:21:07] [info] 	- locked <0x09457458> (a
> org.apache.tomcat.util.net.AprEndpoint$Poller)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "http-8080-Acceptor-0" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x0341d828 
> [2007-01-29 17:21:07] [info] nid=0xc84 
> [2007-01-29 17:21:07] [info] runnable 
> [2007-01-29 17:21:07] [info] [0x036af000..0x036afb6c]
> [2007-01-29 17:21:07] [info] 	at org.apache.tomcat.jni.Socket.accept(Native
> Method)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.tomcat.util.net.AprEndpoint$Acceptor.run(AprEndpoint.java:999)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info]
> "ContainerBackgroundProcessor[StandardEngine[Catalina]]" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x03358d70 
> [2007-01-29 17:21:07] [info] nid=0x72c 
> [2007-01-29 17:21:07] [info] waiting on condition 
> [2007-01-29 17:21:07] [info] [0x0366f000..0x0366fbec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.sleep(Native Method)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1547)
> [2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "Thread-1" 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x02eeb418 
> [2007-01-29 17:21:07] [info] nid=0xb14 
> [2007-01-29 17:21:07] [info] runnable 
> [2007-01-29 17:21:07] [info] [0x030df000..0x030dfdec]
> [2007-01-29 17:21:07] [info] 	at
> java.net.PlainSocketImpl.socketAccept(Native Method)
> [2007-01-29 17:21:07] [info] 	at java.net.PlainSocketImpl.accept(Unknown
> Source)
> [2007-01-29 17:21:07] [info] 	- locked <0x0954bfd8> (a
> java.net.SocksSocketImpl)
> [2007-01-29 17:21:07] [info] 	at java.net.ServerSocket.implAccept(Unknown
> Source)
> [2007-01-29 17:21:07] [info] 	at java.net.ServerSocket.accept(Unknown
> Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.catalina.core.StandardServer.await(StandardServer.java:388)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.catalina.startup.Catalina.await(Catalina.java:615)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.catalina.startup.Catalina.start(Catalina.java:575)
> [2007-01-29 17:21:07] [info] 	at
> sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> [2007-01-29 17:21:07] [info] 	at
> sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at java.lang.reflect.Method.invoke(Unknown
> Source)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
> [2007-01-29 17:21:07] [info] 	at
> org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "Low Memory Detector" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x00a9b6c0 
> [2007-01-29 17:21:07] [info] nid=0x11e0 
> [2007-01-29 17:21:07] [info] runnable 
> [2007-01-29 17:21:07] [info] [0x00000000..0x00000000]
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "CompilerThread0" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=10 tid=0x00a9a3d0 
> [2007-01-29 17:21:07] [info] nid=0x8fc 
> [2007-01-29 17:21:07] [info] waiting on condition 
> [2007-01-29 17:21:07] [info] [0x00000000..0x02e1fa4c]
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "Signal Dispatcher" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=10 tid=0x00a99628 
> [2007-01-29 17:21:07] [info] nid=0x15bc 
> [2007-01-29 17:21:07] [info] waiting on condition 
> [2007-01-29 17:21:07] [info] [0x00000000..0x00000000]
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "Finalizer" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=8 tid=0x00a94300 
> [2007-01-29 17:21:07] [info] nid=0x1690 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x02d9f000..0x02d9fa6c]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x091d0ab0> (a
> java.lang.ref.ReferenceQueue$Lock)
> [2007-01-29 17:21:07] [info] 	at java.lang.ref.ReferenceQueue.remove(Unknown
> Source)
> [2007-01-29 17:21:07] [info] 	- locked <0x091d0ab0> (a
> java.lang.ref.ReferenceQueue$Lock)
> [2007-01-29 17:21:07] [info] 	at java.lang.ref.ReferenceQueue.remove(Unknown
> Source)
> [2007-01-29 17:21:07] [info] 	at
> java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "Reference Handler" 
> [2007-01-29 17:21:07] [info] daemon 
> [2007-01-29 17:21:07] [info] prio=10 tid=0x0034fb30 
> [2007-01-29 17:21:07] [info] nid=0xe50 
> [2007-01-29 17:21:07] [info] in Object.wait() 
> [2007-01-29 17:21:07] [info] [0x02d5f000..0x02d5faec]
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
> [2007-01-29 17:21:07] [info] 	- waiting on <0x091d07f0> (a
> java.lang.ref.Reference$Lock)
> [2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
> [2007-01-29 17:21:07] [info] 	at
> java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
> [2007-01-29 17:21:07] [info] 	- locked <0x091d07f0> (a
> java.lang.ref.Reference$Lock)
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "main" 
> [2007-01-29 17:21:07] [info] prio=6 tid=0x00344be8 
> [2007-01-29 17:21:07] [info] nid=0x1030 
> [2007-01-29 17:21:07] [info] runnable 
> [2007-01-29 17:21:07] [info] [0x00000000..0x0006f5bc]
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "VM Thread" 
> [2007-01-29 17:21:07] [info] prio=10 tid=0x00a92518 
> [2007-01-29 17:21:07] [info] nid=0xb80 
> [2007-01-29 17:21:07] [info] runnable 
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] 
> [2007-01-29 17:21:07] [info] "VM Periodic Task Thread" 
> [2007-01-29 17:21:07] [info] prio=10 tid=0x00a99328 
> [2007-01-29 17:21:07] [info] nid=0xe48 
> [2007-01-29 17:21:08] [info] waiting on condition 
> [2007-01-29 17:21:08] [info] 
> [2007-01-29 17:21:08] [info] 
> 
> 
> 

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


Re: TCP Connection Aborted problems

Posted by JNeuhoff <ne...@mhccorp.com>.
We'll repeat the stresstest with subsequent threaddump tomorrow morning.
However, I just experienced the same TCP Connections aborted scenario on
another test server running the same web service ('/demo-e/servlet'), and I
managed to get a threaddump from there:

[2007-01-29 17:21:07] [info] Console CTRL+BREAK event signaled
[2007-01-29 17:21:07] [info] Full thread dump Java HotSpot(TM) Client VM
(1.5.0_09-b03 mixed mode, sharing):
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-3" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x03943448 
[2007-01-29 17:21:07] [info] nid=0xeb4 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0448f000..0x0448fb6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0965eb60> (a
org.apache.tomcat.util.net.AprEndpoint$Worker)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Worker.await(AprEndpoint.java:1255)
[2007-01-29 17:21:07] [info] 	- locked <0x0965eb60> (a
org.apache.tomcat.util.net.AprEndpoint$Worker)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1280)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-2" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x0309d090 
[2007-01-29 17:21:07] [info] nid=0x11b0 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x043ef000..0x043efcec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b1b8> (a
org.apache.tomcat.util.net.AprEndpoint$Worker)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Worker.await(AprEndpoint.java:1255)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b1b8> (a
org.apache.tomcat.util.net.AprEndpoint$Worker)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1280)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Poller-7" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x0393dcf0 
[2007-01-29 17:21:07] [info] nid=0x17e8 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x043af000..0x043afd6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b238> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b238> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Poller-6" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x0391d030 
[2007-01-29 17:21:07] [info] nid=0x1150 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0436f000..0x0436f9ec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b2c8> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b2c8> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Poller-5" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x038fc370 
[2007-01-29 17:21:07] [info] nid=0x114c 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0432f000..0x0432fa6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b358> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b358> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Poller-4" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x038db6b0 
[2007-01-29 17:21:07] [info] nid=0x5bc 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x042ef000..0x042efaec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b3e8> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b3e8> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Poller-3" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x038ba9f0 
[2007-01-29 17:21:07] [info] nid=0x17dc 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x042af000..0x042afb6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b478> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b478> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Poller-2" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x03839330 
[2007-01-29 17:21:07] [info] nid=0x1698 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0426f000..0x0426fbec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b508> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b508> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Poller-1" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x03838508 
[2007-01-29 17:21:07] [info] nid=0xb34 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0422f000..0x0422fc6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b598> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b598> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-1" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x03838220 
[2007-01-29 17:21:07] [info] nid=0xd5c 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x041ef000..0x041efcec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954b9e8> (a
org.apache.tomcat.util.net.AprEndpoint$Worker)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Worker.await(AprEndpoint.java:1255)
[2007-01-29 17:21:07] [info] 	- locked <0x0954b9e8> (a
org.apache.tomcat.util.net.AprEndpoint$Worker)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1280)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Poller-0" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x0342fab8 
[2007-01-29 17:21:07] [info] nid=0x10a0 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x041af000..0x041afd6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954ba68> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954ba68> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "ajp-8009-Acceptor-0" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x0342f758 
[2007-01-29 17:21:07] [info] nid=0x1280 
[2007-01-29 17:21:07] [info] runnable 
[2007-01-29 17:21:07] [info] [0x0416f000..0x0416f9ec]
[2007-01-29 17:21:07] [info] 	at org.apache.tomcat.jni.Socket.accept(Native
Method)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Acceptor.run(AprEndpoint.java:999)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Sendfile-0" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x03453108 
[2007-01-29 17:21:07] [info] nid=0x1348 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0412f000..0x0412fa6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954bb68> (a
org.apache.tomcat.util.net.AprEndpoint$Sendfile)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Sendfile.run(AprEndpoint.java:1486)
[2007-01-29 17:21:07] [info] 	- locked <0x0954bb68> (a
org.apache.tomcat.util.net.AprEndpoint$Sendfile)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-1" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x034544f8 
[2007-01-29 17:21:07] [info] nid=0x134c 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x040ef000..0x040efc6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954bc10> (a
org.apache.tomcat.util.net.AprEndpoint$Worker)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Worker.await(AprEndpoint.java:1255)
[2007-01-29 17:21:07] [info] 	- locked <0x0954bc10> (a
org.apache.tomcat.util.net.AprEndpoint$Worker)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1280)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Poller-7" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x034df498 
[2007-01-29 17:21:07] [info] nid=0x1268 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x040af000..0x040afb6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954bc90> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954bc90> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Poller-6" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x0341daf0 
[2007-01-29 17:21:07] [info] nid=0x1350 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0406f000..0x0406fcec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954bd20> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954bd20> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Poller-5" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x037cf020 
[2007-01-29 17:21:07] [info] nid=0x112c 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0402f000..0x0402faec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954bdb0> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954bdb0> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Poller-4" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x037ae4b0 
[2007-01-29 17:21:07] [info] nid=0xcbc 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x03fef000..0x03fefd6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954be40> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954be40> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Poller-3" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x034dfe68 
[2007-01-29 17:21:07] [info] nid=0x17a4 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x03faf000..0x03fafbec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954bed0> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954bed0> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Poller-2" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x034dc618 
[2007-01-29 17:21:07] [info] nid=0x978 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0376f000..0x0376f9ec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x0954bf60> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x0954bf60> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Poller-1" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x034bbc58 
[2007-01-29 17:21:07] [info] nid=0x5f8 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x0372f000..0x0372fa6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x094573c8> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x094573c8> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Poller-0" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x034553b8 
[2007-01-29 17:21:07] [info] nid=0x2c8 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x036ef000..0x036efaec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x09457458> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Poller.run(AprEndpoint.java:1127)
[2007-01-29 17:21:07] [info] 	- locked <0x09457458> (a
org.apache.tomcat.util.net.AprEndpoint$Poller)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "http-8080-Acceptor-0" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x0341d828 
[2007-01-29 17:21:07] [info] nid=0xc84 
[2007-01-29 17:21:07] [info] runnable 
[2007-01-29 17:21:07] [info] [0x036af000..0x036afb6c]
[2007-01-29 17:21:07] [info] 	at org.apache.tomcat.jni.Socket.accept(Native
Method)
[2007-01-29 17:21:07] [info] 	at
org.apache.tomcat.util.net.AprEndpoint$Acceptor.run(AprEndpoint.java:999)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info]
"ContainerBackgroundProcessor[StandardEngine[Catalina]]" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x03358d70 
[2007-01-29 17:21:07] [info] nid=0x72c 
[2007-01-29 17:21:07] [info] waiting on condition 
[2007-01-29 17:21:07] [info] [0x0366f000..0x0366fbec]
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.sleep(Native Method)
[2007-01-29 17:21:07] [info] 	at
org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1547)
[2007-01-29 17:21:07] [info] 	at java.lang.Thread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "Thread-1" 
[2007-01-29 17:21:07] [info] prio=6 tid=0x02eeb418 
[2007-01-29 17:21:07] [info] nid=0xb14 
[2007-01-29 17:21:07] [info] runnable 
[2007-01-29 17:21:07] [info] [0x030df000..0x030dfdec]
[2007-01-29 17:21:07] [info] 	at
java.net.PlainSocketImpl.socketAccept(Native Method)
[2007-01-29 17:21:07] [info] 	at java.net.PlainSocketImpl.accept(Unknown
Source)
[2007-01-29 17:21:07] [info] 	- locked <0x0954bfd8> (a
java.net.SocksSocketImpl)
[2007-01-29 17:21:07] [info] 	at java.net.ServerSocket.implAccept(Unknown
Source)
[2007-01-29 17:21:07] [info] 	at java.net.ServerSocket.accept(Unknown
Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.catalina.core.StandardServer.await(StandardServer.java:388)
[2007-01-29 17:21:07] [info] 	at
org.apache.catalina.startup.Catalina.await(Catalina.java:615)
[2007-01-29 17:21:07] [info] 	at
org.apache.catalina.startup.Catalina.start(Catalina.java:575)
[2007-01-29 17:21:07] [info] 	at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[2007-01-29 17:21:07] [info] 	at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[2007-01-29 17:21:07] [info] 	at java.lang.reflect.Method.invoke(Unknown
Source)
[2007-01-29 17:21:07] [info] 	at
org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
[2007-01-29 17:21:07] [info] 	at
org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "Low Memory Detector" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=6 tid=0x00a9b6c0 
[2007-01-29 17:21:07] [info] nid=0x11e0 
[2007-01-29 17:21:07] [info] runnable 
[2007-01-29 17:21:07] [info] [0x00000000..0x00000000]
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "CompilerThread0" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=10 tid=0x00a9a3d0 
[2007-01-29 17:21:07] [info] nid=0x8fc 
[2007-01-29 17:21:07] [info] waiting on condition 
[2007-01-29 17:21:07] [info] [0x00000000..0x02e1fa4c]
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "Signal Dispatcher" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=10 tid=0x00a99628 
[2007-01-29 17:21:07] [info] nid=0x15bc 
[2007-01-29 17:21:07] [info] waiting on condition 
[2007-01-29 17:21:07] [info] [0x00000000..0x00000000]
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "Finalizer" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=8 tid=0x00a94300 
[2007-01-29 17:21:07] [info] nid=0x1690 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x02d9f000..0x02d9fa6c]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x091d0ab0> (a
java.lang.ref.ReferenceQueue$Lock)
[2007-01-29 17:21:07] [info] 	at java.lang.ref.ReferenceQueue.remove(Unknown
Source)
[2007-01-29 17:21:07] [info] 	- locked <0x091d0ab0> (a
java.lang.ref.ReferenceQueue$Lock)
[2007-01-29 17:21:07] [info] 	at java.lang.ref.ReferenceQueue.remove(Unknown
Source)
[2007-01-29 17:21:07] [info] 	at
java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "Reference Handler" 
[2007-01-29 17:21:07] [info] daemon 
[2007-01-29 17:21:07] [info] prio=10 tid=0x0034fb30 
[2007-01-29 17:21:07] [info] nid=0xe50 
[2007-01-29 17:21:07] [info] in Object.wait() 
[2007-01-29 17:21:07] [info] [0x02d5f000..0x02d5faec]
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Native Method)
[2007-01-29 17:21:07] [info] 	- waiting on <0x091d07f0> (a
java.lang.ref.Reference$Lock)
[2007-01-29 17:21:07] [info] 	at java.lang.Object.wait(Unknown Source)
[2007-01-29 17:21:07] [info] 	at
java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
[2007-01-29 17:21:07] [info] 	- locked <0x091d07f0> (a
java.lang.ref.Reference$Lock)
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "main" 
[2007-01-29 17:21:07] [info] prio=6 tid=0x00344be8 
[2007-01-29 17:21:07] [info] nid=0x1030 
[2007-01-29 17:21:07] [info] runnable 
[2007-01-29 17:21:07] [info] [0x00000000..0x0006f5bc]
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "VM Thread" 
[2007-01-29 17:21:07] [info] prio=10 tid=0x00a92518 
[2007-01-29 17:21:07] [info] nid=0xb80 
[2007-01-29 17:21:07] [info] runnable 
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] 
[2007-01-29 17:21:07] [info] "VM Periodic Task Thread" 
[2007-01-29 17:21:07] [info] prio=10 tid=0x00a99328 
[2007-01-29 17:21:07] [info] nid=0xe48 
[2007-01-29 17:21:08] [info] waiting on condition 
[2007-01-29 17:21:08] [info] 
[2007-01-29 17:21:08] [info] 



-- 
View this message in context: http://www.nabble.com/TCP-Connection-Aborted-problems-tf3135245.html#a8693734
Sent from the Tomcat - User mailing list archive at Nabble.com.


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


Re: TCP Connection Aborted problems

Posted by Rainer Jung <ra...@kippdata.de>.
I had a look at your log files. It really looks like something is wrong 
on the remote=tomcat side (or in between mod_jk and tomcat). Please do a 
couple of thread dumps for the tomcat JVM immediately after your stress 
test, during the time you cannot send request via mod_jk.

Under Windows you have to run Tomcat from the console in order to be 
able to do a JVM thread dump. You create a thread dump by Typing 
Ctrl-Break. It should go to your catalina.out. It start with a line 
containing 'ull thread'.

Regards,

Rainer

JNeuhoff wrote:
> As a followup from the
> http://www.nabble.com/mod_jk-replacement--tf3050993.html I am still looking
> for a working solution of the err=-53 (TCP Connection aborted) problem.
> 
> To summarize what is happening: 
> 
> We have a Windows 2003 server (with Apache 2.0.59, mod_jk 1.2.20 and Tomcat
> 5.5.17).
> 
> It was subjected by 2 client workstations from the same subnet to a
> stresstest
> involving 2 users. These were rapidly clicking on weblinks within our
> website. Their click-rate was faster on purpose than the Tomcat service
> could handle. The average response time from our servlet
> is about 0.15 seconds, but can go up to 0.5 seconds or more
> depending on server load and how many MySQL database queries
> it has to do.
> 
> After just a minute or two, the server became unresponsive.
> Even though both Apache and Tomcat continued to run and receive
> requests the underlying TCP connections for the responses
> resulted in err=53 or err=54 conditions, hence the web browsing
> clients became unable to receive the responses. Even a re-start
> of the Apache and Tomcat NT services didn't clear up this stalemate
> scenario with the TCP connections.
> 
> Judgeing by the mod_jk.log entries, mod_jk tries to connect to Tomcat, and
> part of it is doing a ping to Tomcat and waiting in vain for a pong. Is
> there a way to configure the connection pool so that it will really clear up
> stale TCP connections before re-using them?
> 
> We using the following configuration:
> 
> httpd.conf:
> 
> ....
> Timeout 300
> KeepAlive On
> MaxKeepAliveRequests 100
> KeepAliveTimeout 15
> # WinNT MPM
> # ThreadsPerChild: constant number of worker threads in the server process
> # MaxRequestsPerChild: maximum  number of requests a server process serves
> <IfModule mpm_winnt.c>
> ThreadsPerChild 250
> MaxRequestsPerChild  0
> </IfModule>
> ....
> ### mod_jk 1.x configuration for connecting to Tomcat 5.5                                 
>                                                                                           
> # Load mod_jk module                                                                      
> # Update this path to match your modules location                                         
> LoadModule    jk_module  modules/mod_jk.so                                                
>                                                                                           
> Declare the module for <IfModule directive>                                               
> #AddModule     mod_jk.c                                                                   
>                                                                                           
> # Where to find workers.properties                                                        
> # Update this path to match your conf directory location (put
> workers.properties next to h
> JkWorkersFile "C:/Program Files/Apache Software Foundation/Tomcat
> 5.5/conf/workers.propert
>                                                                                           
> # Where to put jk logs                                                                    
> # Update this path to match your logs directory location (put mod_jk.log
> next to access_lo
> JkLogFile     "C:/Program Files/Apache Software Foundation/Tomcat
> 5.5/logs/mod_jk.log"    
>                                                                                           
> # Set the jk log level [debug/error/info]                                                 
> #JkLogLevel    info                                                                       
> JkLogLevel    debug                                                                       
>                                                                                           
> # Select the log format                                                                   
> JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "                                                
>                                                                                           
> # JkOptions indicate to send SSL KEY SIZE,                                                
> JkOptions     +ForwardKeySize +ForwardURICompat -ForwardDirectories                       
>                                                                                           
> # JkRequestLogFormat set the request format                                               
> JkRequestLogFormat     "%w %V %T %r %s"                                                   
>                                                                                           
> # Send everything for context /jsp-examples to worker named worker1 (ajp13)               
> JkMount  /jsp-examples/* ajp13                                                            
>                                                                                           
> # Send everything for context /servlets-examples to worker named worker1
> (ajp13)          
> JkMount  /servletsp-examples/* ajp13                                                      
>                                                                                           
> # Send everything for context /manager to worker named worker1 (ajp13)                    
> JkMount  /manager/* ajp13                                                                 
>                                                                                           
> # Send everything for context /ohpr to worker named worker1 (ajp13)                       
> JkMount  /ohpr/* ajp13                                                                    
>                                                                                           
> # Send everything for context /demo-b to worker named worker1 (ajp13)                     
> JkMount  /demo-b/* ajp13                                                                  
> ......                                                                                          
> 
> 
> 
> workers.properties:
> 
> # Define 1 real worker using ajp13
> worker.list=ajp13
> 
> # Set properties for worker1 (ajp13)
> worker.ajp13.type=ajp13
> worker.ajp13.host=localhost
> worker.ajp13.port=8009
> worker.ajp13.connection_pool_timeout=600
> worker.ajp13.connection_pool_minsize=10
> worker.ajp13.connect_timeout=15000
> worker.ajp13.prepost_timeout=10000
> 
> 
> 
> server.xml:
> 
> 
> ....
>     <!-- Define an AJP 1.3 Connector on port 8009 -->
>     <Connector port="8009"
>                enableLookups="false" redirectPort="8443" protocol="AJP/1.3"
> connectionTimeout="600000"/>
> ....
> 
> 
> web.xml for our servlet application:
> 
> ....
>     <session-config>
>       <session-timeout>15</session-timeout>    <!-- 15 minutes -->
>     </session-config>
> ....
> 
> 
> 
> mod_jk.log extract illustrating a blocked TCP connection between Apache and
> Tomcat:
> 
> .....
> 
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (575):
> Attempting to map URI '/ohpr/servlet/Browse' from 5 maps
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
> Attempting to map context URI '/servletsp-examples/*=ajp13' source 'JkMount'
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
> Attempting to map context URI '/jsp-examples/*=ajp13' source 'JkMount'
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
> Attempting to map context URI '/manager/*=ajp13' source 'JkMount'
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
> Attempting to map context URI '/demo-b/*=ajp13' source 'JkMount'
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (587):
> Attempting to map context URI '/ohpr/*=ajp13' source 'JkMount'
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_uri_worker_map.c (602):
> Found a wildchar match '/ohpr/*=ajp13'
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] mod_jk.c (1999): Into handler
> jakarta-servlet worker=ajp13 r->proxyreq=0
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_worker.c (114): found a
> worker ajp13
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_worker.c (290): Found
> worker type 'ajp13'
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] mod_jk.c (584): Service
> protocol=HTTP/1.1 method=GET host=daohpr1.essex.ac.uk addr=155.245.69.201
> name=daohprw2-a port=80 auth=(null) user=(null) laddr=155.245.69.32
> raddr=155.245.69.201
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (2315):
> acquired connection pool slot=78
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (548): ajp
> marshaling done
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (1771):
> processing ajp13 with 2 retries
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_connect.c (335): socket
> TCP_NODELAY set to On
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_connect.c (433): trying to
> connect socket 5776 to 127.0.0.1:8009
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_connect.c (459): socket
> 5776 connected to 127.0.0.1:8009
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (847):
> Connected socket 5776 to (127.0.0.1:8009)
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (893):
> sending to ajp13 pos=4 len=5 max=16
> [Wed Jan 24 13:02:26 2007] [0284:3868] [debug] jk_ajp_common.c (893): 0000   
> 12 34 00 01 0A 00 00 00 00 00 00 00 00 00 00 00  - .4..............
> [Wed Jan 24 13:02:41 2007] [0284:3868] [info]  jk_ajp_common.c (807):
> timeout in reply pong
> [Wed Jan 24 13:02:41 2007] [0284:3868] [info]  jk_ajp_common.c (1259):
> (ajp13) error connecting to the backend server (errno=0)
> [Wed Jan 24 13:02:41 2007] [0284:3868] [info]  jk_ajp_common.c (1916):
> (ajp13) sending request to tomcat failed,  recoverable operation attempt=1
> [Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_connect.c (335): socket
> TCP_NODELAY set to On
> [Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_connect.c (433): trying to
> connect socket 5776 to 127.0.0.1:8009
> [Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_connect.c (459): socket
> 5776 connected to 127.0.0.1:8009
> [Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_ajp_common.c (847):
> Connected socket 5776 to (127.0.0.1:8009)
> [Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_ajp_common.c (893):
> sending to ajp13 pos=4 len=5 max=16
> [Wed Jan 24 13:02:41 2007] [0284:3868] [debug] jk_ajp_common.c (893): 0000   
> 12 34 00 01 0A 00 00 00 00 00 00 00 00 00 00 00  - .4..............
> [Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (807):
> timeout in reply pong
> [Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (1259):
> (ajp13) error connecting to the backend server (errno=0)
> [Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (1916):
> (ajp13) sending request to tomcat failed,  recoverable operation attempt=2
> [Wed Jan 24 13:02:56 2007] [0284:3868] [error] jk_ajp_common.c (1928):
> (ajp13) Connecting to tomcat failed. Tomcat is probably not started or is
> listening on the wrong port
> [Wed Jan 24 13:02:56 2007] [0284:3868] [debug] jk_ajp_common.c (2258):
> recycling connection pool slot=40 for worker ajp13
> [Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (807):
> timeout in reply pong
> [Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (1259):
> (ajp13) error connecting to the backend server (errno=0)
> [Wed Jan 24 13:02:56 2007] [0284:3868] [info]  jk_ajp_common.c (1916):
> (ajp13) sending request to tomcat failed,  recoverable operation attempt=2
> [Wed Jan 24 13:02:56 2007] [0284:3868] [error] jk_ajp_common.c (1928):
> (ajp13) Connecting to tomcat failed. Tomcat is probably not started or is
> listening on the wrong port
> [Wed Jan 24 13:02:56 2007] [0284:3868] [debug] jk_ajp_common.c (2258):
> recycling connection pool slot=40 for worker ajp13

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