• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Tomcat Server get terminated abruptly.

 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That error message says pause - to me terminate means the program exits - which is it?

What do the log files say?

Bill
 
Ranch Hand
Posts: 75
Tomcat Server Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
> 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.
reply
    Bookmark Topic Watch Topic
  • New Topic