Labels

Thursday, January 14, 2021

GDB cheatsheet


 #strings <core_file> | grep -i hs_err_pid  /* please take this file for the java core file */ 

​#strings <core_file> | grep "java.command" 

#su - <userid_which_genrate_core_file> 

#jstack <java_binary_path> <core_file_path> 


gdb -c <core_file_path> <java_binary_path> 

(gdb) set logging on 

(gdb) set pagination off

(gdb) bt 

(gdb) thread apply all bt

(gdb) quit

No comments:

Post a Comment