Debugging the JVM
- Install gdb (under Ubuntu this would be something like:
sudo apt-get install build-essential) - If you are using OpenJDK, install the debugging symbols for it so that the debugger can give a more readable output (again, under Ubuntu this would be
sudo apt-get install openjdk-6-dbgâ substitute 6 with a 7 if you are using the latest OpenJDK)
Now just prefix your java command with gdb --args:
gdb --args java Foo
When the gdb prompt comes up (â(gdb)â), type ârunâ (without the quotes) to start the actual running of the program. After the crash happens you should a message like the following:
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x6b195b70 (LWP 30273)]
(gdb)
Here you can use the commands âbacktraceâ and âbacktrace fullâ to get an approximate idea of the crashsite. To continue running (although it will just exit most probably) input âcâ. To exit (killing the JVM in the process) type âquitâ. Consult the GDB tutorials available on the Internet for more commands and their parameters.If you are debugging from inside Eclipse, you can do the following: in the configuration properties set the JRE to âAlternate JREâ and specify the Java executable as âjavagâ (also, make sure that you have âAllocate consoleâ checked in the Common tab).
Now go to your JDK run directory (/usr/lib/jvm/java-7-openjdk-i386/bin in my case) and create a javag file (sudo vim javag) with the following content:
#!/bin/bash
gdb -x '/usr/lib/jvm/java-7-openjdk-i386/bin/javag-commands' --args '/usr/lib/jvm/java-7-openjdk-i386/bin/java' $*
Also create the javag-commands file with the following content
run
Finally, make javag executable (sudo +x chmod javag) and youâre good to go! This workaround is necessary because Eclipse doesnât accept absolute paths in the configuration tab. The second file is used to automatically pass the ârunâ command to gdb rather than the user having to type it themselves on each start. Also, keep in mind that while GDB has suspended the process Java debuggers (like Eclipse) canât communicate with it so it is normal for them to throw all kind of errors (like âtarget not respondingâ).
Have a bugfree year, but if you find bugs, let them be at least reproducible ![]()
Reference: Debugging the JVM from our JCG partner Attila-Mihaly Balazs at the Transylvania JUG blog.
Related Articles :



That’s cool. I always thought that if your JVM crashes, that’s it / there’s no way out. gdb doesn’t seem such a friendly option though. I bet the Oracle’s JVM developer team has some custom tools for that, that they might want to make public.
But other than that, a very nice read.