jhsdb: add page (#6643)

This commit is contained in:
WhileLoop 2021-10-04 07:48:16 -07:00 committed by GitHub
parent 0b5aa33736
commit c4e73acbcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
pages/common/jhsdb.md Normal file
View File

@ -0,0 +1,20 @@
# jhsdb
> Attach to a Java process or launch a postmortem debugger to analyze the core dump from a crashed Java Virtual Machine.
> More information: <https://manned.org/jhsdb>.
- Print stack and locks information of a Java process:
`jhsdb jstack --pid {{pid}}`
- Open a core dump in interactive debug mode:
`jhsdb clhsdb --core {{path/to/core_dump}} --exe {{path/to/jdk/bin/java}}`
- Start a remote debug server:
`jhsdb debugd --pid {{pid}} --serverid {{optional_unique_id}}`
- Connect to a process in interactive debug mode:
`jhsdb clhsdb --pid {{pid}}`