Java Virtual Machine (JVM) Stack Trace dumper tool.
2
votes
0answers
25 views
Object id's in jstack
I ran into a deadlock in my system, and here are excerpts from 2 jstacks taken a few minutes apart
Jstack 1
Found one Java-level deadlock:
=============================
...
0
votes
1answer
123 views
Interpreting jstack trace to track down the stalled lock
I've used Samurai and I can see there is no deadlock and several threads waiting but I can't seem to figure out exactly which lock is stalling the process. Can anyone help me out?
I'm not looking ...
0
votes
1answer
32 views
jstack: what does “JNI global references” mean?
When running the jstack tool, the last line, after all the stack traces, is an output like this:
JNI global references: 1319
The question What is 'JNI Global reference'
explains what a ...
2
votes
1answer
229 views
ThreadDump issues when almost all threads are in NATIVE state
I took thread dump of a host in my application where most of the threads are in (state = IN_NATIVE) state.
Only couple of threads were blocked at these instances:
Thread 31681: (state = BLOCKED)
- ...
2
votes
1answer
212 views
Is it necessary to run jstack -F as root (on linux) and if so why?
Is it necessary to run jstack -F as root (on linux) and if so why?
When trying to jstack -F my own processes I get the following error.
Error attaching to process: ...
0
votes
1answer
88 views
java app deadlock but unlocked after use jstack to dump thread
My java app is sometime freezing so I dump thread with jstack -F
but the report show no deadlock and app became responsive again ?
anyone know what happened ?
My app using hibernate 4.1.8, jetty 9M2, ...
4
votes
3answers
437 views
Java Swing : GUI frozen - jstack interpretation
I have a Gui application in swing that prints a ticket on a serial thermal printer. When i hit the button that launch this action, my GUI is frozen. I think that's because the code is executed on the ...
1
vote
1answer
288 views
jstack 100% CPU
So I got stuck trying to figure out why our application will occasionally consume 100% CPU. I've read several very helpful stackovertflow post, but I think to be on the safe side I would like to get ...
0
votes
1answer
559 views
jstack output - get tid for java Thread.getId
I had a look at existing questions on getting the thread id like java-thread-id-and-stack-trace .
But I'm not able to figure out something that seemed simple. I want to make a JSP tool to stop a ...
12
votes
3answers
1k views
How does jstack -F affect a running Java process?
I am trying to diagnose a problem where a Java web application I'm using (Jenkins) becomes unresponsive. If I run jstack without the -F flag it doesn't give me anything, but if I put the flag in to ...
1
vote
1answer
332 views
jstack Can't create thread dump - Thread 745: (state = BLOCKED) Error occurred during stack walking)
When we generate a thread dump for JBoss 4.2.3.GA using $JAVA_HOME/bin/jstack on Linux... we get this error:
Can't create thread dump - Thread 745: (state = BLOCKED) Error occurred during stack ...
0
votes
1answer
332 views
unix script to collect the thread dump logs of a process
I am trying to generate an issue regarding HashMap.put function.I have written a test code which will run more than 100 threads.. by using jstack or kill I'am able to get the thread dump of a ...
5
votes
1answer
360 views
Java thread dump prio value doesn't correspond with real thread priority on linux?
I intend to use thread priorities within my Java code.
The application shall run on my Linux system:
>uname -a
Linux <host> 3.0.0-15-generic #26-Ubuntu SMP <date> x86_64 x86_64 x86_64 ...
1
vote
1answer
1k views
100% cpu in java
My server (.war) running on jboss sometimes comes to 100% cpu.
I made a dump with jstack, but don't succeed to see an indication to what is taking 100% cpu.
jstack -F don't succeed, so i runned it ...
5
votes
3answers
3k views
jstack - well-known file is not secure
I am running tomcat 5.5 on x86_64 CentOS 5.7 using 32-bit Oracle Java 1.6.0.
JVM process used by tomcat has 6421 pid. Tomcat is working fine.
When run jstack it fails with:
[root@mybox ~]# jstack ...
4
votes
1answer
2k 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
...
8
votes
3answers
3k 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 ...
1
vote
1answer
745 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 ...
10
votes
4answers
8k 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 ...
2
votes
2answers
2k 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[] ...
4
votes
1answer
3k 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
309 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
0answers
605 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
133 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.
...
10
votes
2answers
2k 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 ...
15
votes
2answers
7k 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 ...
0
votes
0answers
684 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 ...
1
vote
1answer
654 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 ...
3
votes
2answers
4k 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 ...
3
votes
2answers
940 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 ...
0
votes
1answer
2k 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 ...
4
votes
3answers
1k 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 ...
6
votes
2answers
5k 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 ...
1
vote
3answers
4k 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 ...
17
votes
5answers
15k 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 ...
1
vote
4answers
390 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 ...
2
votes
3answers
6k 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 ...
6
votes
5answers
14k 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 ...

