How to generate Weblogic core dump in Solaris

This is what I did recently to generate core dump of Weblogic server running in Solaris box. Had to spend sometime to figure it out where the dump is being generated.

Here are the steps I followed:

[1] Run ps -ef | grep java command.
[2] Identify the process id of the Weblogic process [ Make sure only one Weblogic process is running so that it’s easy to identify ].
[3] Run the command kill -3 process_id
[4] Assuming that the Weblogic server is started using nohup ./startWeblogic.sh & command, the core dump will be appended to nohup.out file.
[5] You can check this by doing less and Shift + F on nohup.out file.


Comments

One response to “How to generate Weblogic core dump in Solaris”

  1. This is not core dump. This is thread dump.

Leave a Reply

Discover more from Chai's Blog

Subscribe now to keep reading and get access to the full archive.

Continue reading