$customHeader
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Jira runs on a Java Virtual Machine (JVM). If that JVM hangs or freezes, it can be difficult to diagnose what caused the problem. In order to diagnose, you will need to get a “thread dump” from your JVM while the freeze/hang is occurring.

Once you have the hang occurring again, please use the Java jstack utility via the server terminal to print a thread dump:

  1. Use Java command jps to list JVM processes, or use another method to find the process ID of the JVM running Jira

  2. Use jstack -l <pid> where <pid> is the Jira JVM process id

  3. If the command fails to print, use jstack -F -l <pid> to force the command

  4. Attach the output to your support case with us

The above assumes that Jira is running on a Linux server. Similar Java commands will be available for Windows servers.

  • No labels