我正在运行 Ubuntu 服务器版,我想进行 Tomcat 的线程转储。
所以,我首先尝试找出tomcat使用的是哪个PID:
$ jps -l
5809 sun.tools.jps.Jps
但它不在那里?
所以,我top
改用并找到了 PID 5730。
然后我调用 jstack 来获取线程转储:
$ 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
这是怎么回事?:-(
我已经尝试按照Jstack 中的描述导出 CATALINA_TMPDIR 并且 Jstat 停止升级到 JDK6u23但这并没有改变任何东西:
$ 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
更新:
我也尝试过sudo -u tomcat6 jstack -l -F 5730 > threaddumpexceptions2.txt
,但它只会给我控制台上的大量异常。