Saturday, 14 April 2018

Different Way of taking thread dump in WEBLOGIC

Different Way of taking thread dump in WEBLOGIC

Method 1: Execute the below command to get the thread dump

java weblogic.Admin -url t3://192.168.20.208:7001 -username weblogic -password WebL0gic@2011 THREAD_DUMP -file /tmp/threaddump.log 

Method 2: Execute the below command to get the thread dump

jstack -l 16876 >> /tmp/threaddump.log

Method 2: Execute the below command to get the thread dump

kill -3  

This will save the thread dump out in system.out file

No comments:

Post a Comment

All about WebLogic t3 and t3s Protocol

WebLogic's  implementation of the RMI specification uses a proprietary protocol known as T3. You can think of T3 (and secure T3S) as a l...