mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
452 B
Plaintext
22 lines
452 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jstack
|
|
|
|
> Java stack trace tool.
|
|
> More information: <https://manned.org/jstack>.
|
|
|
|
- Print Java stack traces for all threads in a Java process:
|
|
|
|
`jstack {{java_pid}}`
|
|
|
|
- Print mixed mode (Java/C++) stack traces for all threads in a Java process:
|
|
|
|
`jstack -m {{java_pid}}`
|
|
|
|
- Print stack traces from Java core dump:
|
|
|
|
`jstack {{/usr/bin/java}} {{file.core}}`
|