March 2012
Beginner
294 pages
5h 50m
English
The thread dump is a way through which we can determine the application-level thread status for any Java process. There are many ways to obtain a thread dump in Tomcat; here we will discuss two different ways which are widely used in the IT environment.
This command generates and redirects the thread dump in catalina.out log. But, the limitation to this command is it works in a non-DOS environment such as Linux, Unix, and so on.
Kill -3 java process id
For example:
Kill -3 10638

The previous screenshot shows the output of the thread dump command in catalina.out logs. We can see ...
Read now
Unlock full access