0

Can someone please give detailed way to monitor JBOSS app server ? The production application running on JBOSS server starts working fine after restarting the server. How do I identify what is the cause behind it?

Atul Patel
  • 543
  • 4
  • 11

1 Answers1

0

To see what is "hung", try getting a thread dump from your JBoss instance by running it in the foreground from a command shell. Then on Linux, send a kill -3 [PID] to JBoss to dump its thread state to stdout. On Windows, you would type Control-Break in the CMD shell running JBoss. Alternatively, use a monitoring tool like VisualVM.

Community
  • 1
  • 1
Guy Davis
  • 128
  • 5