简体   繁体   中英

Set a JVM to dump heap when OutOfMemoryError is thrown

I am trying to set the JVM of the server I am working on, so it dumps a heap to file when an OOME occurs.

I know I have to add this option -XX:-HeapDumpOnOutOfMemoryError to the JVM arguments somewhere, but I can't figure how to do this.

FYI, I can access the server through PuTTY, so I am looking for a command line way of doing this.

The JVM I am using is OpenJDK64-Bit Server VM.

I don't know if that's relevant, but the application is a war file.

PS : ps -ef|grep java

tomcat   23837     1  0 Mar25 ?        00:03:46 /usr/lib/jvm/jre/bin/java -classpath :/usr/share/tomcat6/bin/bootstrap.jar:/usr/share/tomcat6/bin/tomcat-juli.jar:/usr/share/java/commons-daemon.jar -Dcatalina.base=/usr/share/tomcat6 -Dcatalina.home=/usr/share/tomcat6 -Djava.endorsed.dirs= -Djava.io.tmpdir=/var/cache/tomcat6/temp -Djava.util.logging.config.file=/usr/share/tomcat6/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager org.apache.catalina.startup.Bootstrap start

EDIT :

I found something, correct me if I'm wrong : since I am using Tomcat, I decided to add these lines in the tomcat.conf file:

JAVA_OPTS=-XX:-HeapDumpOnOutOfMemoryError

JAVA_OPTS=-XX:HeapDumpPath=/root/dump

JAVA_OPTS=-Xmx20m

What do you think ?

This option from the HotSpot VM options . I would think it'd be the same in the OpenJDK VM but let me know if it's not.

-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=<path to dump file>

You can also manually generate a memory map using jmap if you know the process id:

jmap -J-d64 -dump:format=b,file=<path to dump file> <jvm pid>

You can use JHat to analyze the dump.

jhat <path to dump file>

As mentioned by @CoolBeans, the JVM options to use are:

-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=<path to dump file>

For setting this in tomcat, create a file named setenv.sh (setenv.bat for windows) under TOMCAT_HOME/bin directory & add the following line

export CATALINA_OPTS="$CATALINA_OPTS -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=<path to dump file>"

CATALINA_OPTS is preferred for these kind of options as they need not be applied to the shutdown process.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM