| Author |
Tomcat Server get terminated abruptly.
|
Shankara Sharma
Ranch Hand
Joined: Feb 06, 2012
Posts: 33
|
|
Hi All,
I am trying to download 110,000 records in CSV format using my application. But when i click on download, after running some time, my tomcat server is terminated. Please let me know what can be the issue. I am getting the below error message.
Error Message :
Feb 13, 2013 10:15:14 AM org.apache.coyote.http11.Http11BaseProtocol pause
INFO: Pausing Coyote HTTP/1.1 on http-9087
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12265
|
|
That error message says pause - to me terminate means the program exits - which is it?
What do the log files say?
Bill
|
Java Resources at www.wbrogden.com
|
 |
K. Gil
Ranch Hand
Joined: Apr 29, 2011
Posts: 64
|
|
> Feb 13, 2013 10:15:14 AM org.apache.coyote.http11.Http11BaseProtocol pause
> INFO: Pausing Coyote HTTP/1.1 on http-9087
This is not exception, this is information that indicate that coyote pause
then shortly after this you should see that catalina is stopped, and they coyote destroyed.
Coyote is Tomcat's HTTP Connector, which is pausing to make sure there's no more
http connections to your tomcat, then catalina stopping, and finally coyote should be destroyed.
Nothing unusual here.
Try to increase your app log level (log4j is your friend), and try to catch something useful,
otherwise there's not much we/you can do.
|
Java / Tomcat Hosting at http://goJava.net
|
 |
 |
|
|
subject: Tomcat Server get terminated abruptly.
|
|
|