Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I analyze a .mdmp file?

Tags:

java

dump

jrockit

I have java application that is crashing while in production. It doesn't do so in dev/QA. The jvm is creating a .mdmp file and a text file. How do I analyze the binary dump file? I googled but had no luck. We are using bea jrockit jvm 1.5 R27.

like image 712
fastcodejava Avatar asked Jul 14 '10 04:07

fastcodejava


People also ask

How do you read an Mdmp file?

MDMP files are saved as binary files to disc and can be opened with Microsoft Visual Studio debugger.

How do I read a memory dump file?

Click Start, and then click Control Panel. Double-click System, and then click Advanced system settings. Click the Advanced tab, and then click Settings under Startup and Recovery. In the Write debugging information list, click Small memory dump (256k).


1 Answers

The .mdmp file is a Windows MiniDump file that you can only read with a debugger (like WinDbg). Typically you need the sources of the crashed application to really get some information out of the dump. So in your case you can't do much but contacting JRockit support.

Here a link to the Orace JRockit information about JVM crahes.

like image 134
MicSim Avatar answered Sep 29 '22 23:09

MicSim