Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
3k views

Jstack and Jstat stopped working with upgrade to JDK6u23

We recently upgraded from JDK6u20 (Linux, 32bit and 64bit) to JDK6u23. Since then, we cannot longer use the tools jstack and jstat to get monitoring information from the running process. If we switch ...
9
votes
5answers
8k views

Jstack and Not enough storage is available to process this command

I'm trying to run jstack command on my java application. Application is rather big, running inside jboss AS occupying about 4gb of memory. OS is Windows Server 2003 Standard edition. Every time i get ...
6
votes
1answer
440 views

Sun JDK /Open JDK on Cygwin

Is any version of Sun JDK or Open JDK available to be installed on cygwin. Reason I am looking for this option is: There are many tools (e.g. jStack, jMap) which are available in unix versions of JDK ...
5
votes
3answers
484 views

jstack: Target process not responding

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 ...
4
votes
1answer
89 views

How to use jstack to find blocker-thread

using jstack i got an tree of threads running. What is the meaning of the folowing Thread.State's: WAITING TIMED_WAITING RUNNABLE What means the tid and nid? The title of an Thread is like ...
4
votes
4answers
10k views

Getting the Java thread id and stack trace of run-away Java thread

On my busiest production installation, on occasion I get a single thread that seems to get stuck in an infinite loop. I've not managed to figure out who is the culprit, after much research and ...
3
votes
2answers
2k views

Help with understanding jstack output

I have a desktop Java/Swing application which is deployed via Java Webstart (clients are using Java 6u20 on XP). I have received intermittent reports from users of the application hanging. I managed ...
2
votes
1answer
93 views

jstack not working on server

We use jstack on servers to detect if java apps are getting deadlocked. It's not working on one of our Linux servers. I think O/S version is: $cat /etc/issue.net Red Hat Enterprise Linux Server ...
2
votes
2answers
928 views

How do I create a thread dump via JMX?

I have a Tomcat running as a Windows Service, and those are known not to work well with jstack. jconsole is working well, on the other hand, and I can see stacks of individual threads (I'm connecting ...
2
votes
2answers
447 views

Strange thread dump on deadlock

We've been experiencing a strange deadlock during the startup of our java application. When I run jstack on the application to investigate, I see that the AWT-EventQueue is in Object.wait(), but the ...
2
votes
3answers
3k views

Java stack trace on Windows

I need to get a stack trace for a JVM process running on a client machine that uses windows. The client has the JRE installed but not the JDK. I want to use JStack but it is not installed and we ...
1
vote
1answer
143 views

Jstack gives java.lang.reflect.InvocationTargetException

Til yesterday, jstack was working fine. Today, all out of sudden it gives me the exception below and I don't know why: $ sudo -u tomcat6 jstack -J-d64 -m 26385 Attaching to process ID 26385, please ...
1
vote
1answer
358 views

Java thread dump: BLOCKED thread without “waiting to lock …”

I'm having difficulties in understanding the thread dump I got from jstack for a Spring MVC web application running on Tomcat 6 (java 1.6.0_22, Linux). I see blocking threads (that cause other ...
1
vote
0answers
139 views

jstack understanding

I'm using JBoss 5.1.0 in a production environment and the shutdown time is quite long at times(>10 minutes). I've used jstack during one of the shutdown operations but I can't really understand its ...
1
vote
1answer
323 views

What to do when tomcat stops responding but access denied to jstack and jmap?

Does anyone know any reason why tomcat might stop responding or any way I can find out why this is happening? Tomcat seems to run fine for many weeks before falling over but it has happened a few ...
1
vote
2answers
412 views

How 'expensive' is it to execute jstack on a running JVM?

I'm considering whipping up a script to run once a minute (or every five minutes) run jstack against a running JVM in production parse the jstack output and tally up things I'm interested in export ...
1
vote
3answers
2k views

Java threads: interpreting thread states of a running JVM

A Java thread is always in one of the following ten states: NEW: Just starting up, i.e., in process of being initialized. NEW_TRANS: Corresponding transition state (not used, included for ...
0
votes
2answers
520 views

Extremely simple code not working in HtmlUnit 2.9 stable

I'm working with HtmlUnit 2.9 (the stable version that was released this month). Do you have any idea why the following code is not working? public class Main { public static void main(String[] ...
0
votes
0answers
150 views

Application server hangs after deadlock

We have a webapp designed with multiple JMS listeners. Castor is used as XML-JAVA binding. More often than not we run inton deadlocks, which when we dequeue the messages, restart the applserver and ...
0
votes
0answers
275 views

How to use jstack in mixed mode

I try to use jstack in mixed mode to look at the native call stack, but I found jstack always display this error message to me. sili@linux32:~$ jps 2834 Jps 2825 Server sili@linux32:~$ jstack -m ...
0
votes
1answer
70 views

Application in Sun app server hangs after processing a few messages

Appliation server Sun appserver 8.1 JVM - java 1.5.0.11 We have a JMS receiver processing messages deployed in Sun application Server 9.x After processing about 50 odd messages the appserver hangs. ...
0
votes
1answer
227 views

how can I get the thread dump of my java program started by jsvc?

I use jsvc to start a java program. And then I found that I can use neither 'jstack -l pid' nor 'kill -3 pid'(it will kill the process) to get the thread dump. Have some other way?
0
votes
0answers
346 views

How can I call jstack programmatically on a 64-bit process?

I've got a little tool to help debug client problems with our Java application. Basically it runs jps.exe to get all the Java processes running on the machine, and then calls jstack and jmap on each ...
0
votes
1answer
631 views

JStack for Java 1.5?

I want to use the JStack in a Java 1.5 VM. I found in several web pages that a version of JStack exists for this version, but I can't find it. I have versions 1.5.0_22 and 1.5.0_10 of the JDK and ...
0
votes
4answers
315 views

jstack equavalent in C++

jstack is very helpful to me in checking stack traces of live running processes. Is there any tool in C++ to do this task. I am working with Solaris/GCC compilers. Actually GDB/DBX can do that. But ...