I am running Ubuntu server edition and I wanted to take a thread dump of Tomcat.

So, I first tried to find out which PID tomcat uses:

$ jps -l
5809 sun.tools.jps.Jps

But it's not there?

So, I used top instead and found out the PID 5730.

Then I called jstack to get the thread dump:

$ sudo jstack -l 5730
5730: Unable to open socket file: target process not responding or HotSpot VM not loaded
The -F option can be used when the target process is not responding

What's going on? :-(

I already tried to export CATALINA_TMPDIR as described in Jstack and Jstat stopped working with upgrade to JDK6u23 but that didn't change anything:

$ export CATALINA_TMPDIR=/tmp
$ sudo /etc/init.d/tomcat6 restart
 * Stopping Tomcat servlet engine tomcat6
   ...done.
 * Starting Tomcat servlet engine tomcat6
   ...done.
$ sudo jstack -l 5934 // new PID after restart
5934: Unable to open socket file: target process not responding or HotSpot VM not loaded
The -F option can be used when the target process is not responding

Update:

I also tried sudo -u tomcat6 jstack -l -F 5730 > threaddumpexceptions2.txt but it only gives me tons of exceptions on the console: http://dl.dropbox.com/u/17844821/zeug/threaddump2.txt - The threaddump itself looks like this: http://dl.dropbox.com/u/17844821/zeug/threaddumpexceptions2.txt - Doesn't look right to me.

link|improve this question

Have you tried the -F option? – Michael Pigg Sep 14 '11 at 17:51
@Michael If I use the -F option, then it actually starts the thread dump but the dump itself just contains a lot of error messages: dl.dropbox.com/u/17844821/zeug/threaddump.txt and during the dumping process many many exceptions are thrown: dl.dropbox.com/u/17844821/zeug/threaddumpexception.txt – valmar Sep 14 '11 at 20:40
@valmar Is that possible that the jdk used by Tomcat and jdk you are using for jps are not the same jdk? Could you double check it? – Clark Bao Sep 18 '11 at 5:26
@Clark Mh, how would I do that? – valmar Sep 19 '11 at 19:38
@valmar check this. howtogeek.com/howto/linux/installing-tomcat-6-on-ubuntu Tomcat relys on JAVA_HOME. but your command line, you can type java -version to see if they are the same version and check the java bin path the command are using. – Clark Bao Sep 20 '11 at 2:36
show 8 more comments
feedback

4 Answers

I think you need to run jstack as the same user that runs the Tomcat process. Note also that jps only returns processes for the current user. You would get the pid for the Tomcat process by running jps with sudo or as the Tomcat process user.

This bug report may also be useful: https://bugs.launchpad.net/ubuntu/+source/sun-java6/+bug/597098

link|improve this answer
I can't switch to tomcat6 user because it's not actually a "real" unix account on the system. So su tomcat6 doesn't work. I just tried sudo jps -l but it still only gives me 6493 sun.tools.jps.Jps – valmar Sep 14 '11 at 20:42
I also tried sudo -u tomcat6 jstack -l -F 5730 > threaddumpexceptions2.txt but it only gives me tons of exceptions on the console: dl.dropbox.com/u/17844821/zeug/threaddump2.txt - The threaddump itself looks like this: dl.dropbox.com/u/17844821/zeug/threaddumpexceptions2.txt - Doesn't look right to me. – valmar Sep 14 '11 at 20:57
@valmar: try this to become tomcat6: switches to root: sudo su - from root you you can switch to any user su tomcat6 – Cd-MaN Sep 21 '11 at 21:47
@Cd-MaN No effect. If I do that, it gives me this (the slashes represents newlines since I cannot post newline characters here in comments): $ whoami // valmar // $ sudo su - // # whoami // root // # su tomcat6 // # whoami // root – valmar Sep 22 '11 at 13:39
@valmar: this probably means that you do't have a shell set for the given user (tomcat6) - or most precisely you have the shell set to something like /bin/false. To solve this, use su -p tomcat6 from under the root account (this preserves the current shell). – Cd-MaN Oct 20 '11 at 7:53
feedback
up vote 3 down vote accepted

I got it working by doing two things:

  1. Replaced OpenJDK with sun's original sun-6-jdk and sun-6-jre packages
  2. I modified the jstack call to use 64-bit mode and run it as tomcat-user like this: sudo -u tomcat6 jstack -J-d64 -m pid
link|improve this answer
You should thanks to me,right? :-) – Clark Bao Sep 30 '11 at 6:11
Yes, you're the best :-) – valmar Oct 3 '11 at 10:24
feedback

@Valmar, I find the same topic post here. Unable to get thread dump? Any ideas why my app blocks?

It seems the workaround is sudo -u tomcat6 kill -3 <pid>.

link|improve this answer
Nop, that didn't do the trick. When I do that, nothing happens. – valmar Sep 24 '11 at 19:50
1  
if you are using 64bit, you need to use jstack -J-d64 -m pid, also try to add sudu -u tomcat6 . download.oracle.com/javase/6/docs/technotes/tools/share/… – Clark Bao Sep 25 '11 at 11:48
Hm, that only gives me a load of exceptions on the console: dl.dropbox.com/u/17844821/zeug/console64.txt – valmar Sep 25 '11 at 12:19
1  
If I were you,I will try to use another jdk not openjdk. Maybe it's due to openjdk. – Clark Bao Sep 26 '11 at 11:23
Hm, good idea. I'll go and try sun's version. – valmar Sep 26 '11 at 11:42
show 1 more comment
feedback

This also worked for me:

sudo -u tomcat6 kill -3 pid

It looks like nothing happens but when you look in the logs the stacks are there. They look like exceptions if your not expecting them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.