• 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 Processes

 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Is it possible to increase the number of process handled by Tomcat. I need to do this because the server sometimes gives "Inernal server Error 500". On one of the sites, I read that the error could occur as the number of process that can be handled by Tomcat may have been exceeded.
Thanks
Amit Lonkar
 
Ranch Hand
Posts: 470
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The 500 Internal Server Error is a very general message that means something has gone wrong on the web site's server but the server could not be more specific on what the exact problem is. You should check the log files to get more details about this error.
 
Rancher
Posts: 618
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I agree with Mr. Ver. Here's a topic that may help. FYI, I found it by googling tomcat increase threads.
 
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
I strongly recommend using the Tomcat Management App to monitor Thread and memory useage. You may be running out of Threads due to request Threads getting stuck in loops or endlessly waiting.

Bill

(Oh good grief, another ancient Thread - I really need to remember to look at message dates.)
reply
    Bookmark Topic Watch Topic
  • New Topic