Friday 30 September 2016

Different ways to take thread dumps in Weblogic Server

Different ways to take thread dumps in Weblogic Server

From OS
========
kill -3 2>&1
From weblogic.wlst:
======================
setDomain.cmd or setDomain.sh depending on the OS
java weblogic.WLST
connect("","","t3://:")
threadDump()

From Command line
==================
setDomain.cmd or setDomain.sh depending on the OS
java weblogic.Admin : -username -password THREAD_DUMP
From JRockit
=============
jstack or jstack -l to print additional information about locks
jrcmd print_threads
jcmd Thread.print

From Admin Console also we can take thread dump

No comments:

Post a Comment