• 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

Maximum Threads error

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I found the error below on our tomcat server. I was wondering what would cause this? I read a couple threads about the tomcat server and how to increase the max threads. But the error listed here is not consistent with the one articles get when it's just a max thread issue.

a link to one of those aritlces here:
http://tomcat-configure.blogspot.com/2009/01/tomcat-maxthreads-configuration.html




Feb 25, 2013 8:57:12 AM org.apache.tomcat.util.net.JIoEndpoint createWorkerThread
INFO: Maximum number of threads (200) created for connector with address null and port 8080
Feb 25, 2013 9:26:19 AM org.apache.coyote.http11.Http11Protocol pause
INFO: Pausing Coyote HTTP/1.1 on http-8080
Feb 25, 2013 9:26:20 AM org.apache.catalina.core.StandardService stop
INFO: Stopping service Catalina

Thanks for any advice on this.
 
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
You don't have any errors in your logs, all you past here is just a simple INFO (Information).

Feb 25, 2013 8:57:12 AM org.apache.tomcat.util.net.JIoEndpoint createWorkerThread
INFO: Maximum number of threads (200) created for connector with address null and port 8080



That's your tomcat log from 8:57:12 AM
+ info that maximum number of threads has been created. If this is happening every time you start tomcat, then I would check if your minSpareThreads is not set to 200 (together with maxThreads), which would obviously force tomcat to create all threads at start time.

Feb 25, 2013 9:26:19 AM org.apache.coyote.http11.Http11Protocol pause
INFO: Pausing Coyote HTTP/1.1 on http-8080
Feb 25, 2013 9:26:20 AM org.apache.catalina.core.StandardService stop
INFO: Stopping service Catalina



That's your tomcat stopping at 9:26:19 AM
and there's no any exceptions here, this is information that coyote pause then shortly after this you should see that catalina is stopped, and they coyote destroyed. This is simply what happen when you stop your tomcat.

 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic