• 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

Websphere error

 
Ranch Hand
Posts: 55
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Does anyone have an idea on how to resolve the following error:

0000004e ThreadMonitor W WSVR0605W: Thread "WebContainer : 1" (00000017) has been active for 601187 milliseconds and may be hung. There is/are 2 thread(s) in total in the server that may be hung.

Thank you,
-Shruti
 
Ranch Hand
Posts: 446
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can take the Unix thread dump or execute a Jython script to take the thread dump. It will show you the stack trace of the Java thread that is stuck doing (or waiting on) something.

Typically kill -3 <process id> also gives you the thread dump.
 
reply
    Bookmark Topic Watch Topic
  • New Topic