I'm meeting the dreadful PermGen:Out of memory error when deploying a web-app on TomCat. I have tried many possible solutions, but they don't work out(sometimes it works, usually it doesn't). I wonder if my config in "BuildConfig.groovy" take effect:

grails.tomcat.jvmArgs = ["-Xmx1024m", "-XX:MaxPermSize=1024m"]

Does anyone know someway to view the MaxPermSize actually applied by the JVM?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You can use JVisualVM in the JDK/bin directory to monitor everything about a java process.

link|improve this answer
It looks very good. Thanks! – Hoàng Long Mar 3 '11 at 7:15
feedback

There's a couple of utilities that come in the jsdk i believe - try jstat -gcpermcapacity. Another trick that can sometimes be helpful is ps -fwwwC java (assuming you are running this on a linux box)

link|improve this answer
unfortunately I'm working on Windows at this time. How could I try your command? – Hoàng Long Mar 3 '11 at 7:14
You can also use jconsole to connect to your process and monitor the PermGen usage. This should be available on Windows as well. – jhodges May 24 '11 at 17:09
feedback

In direct answer to your question, java.lang.management.ManagementFactory has method to get information on all of the memory pools used by java, including the PermGen space and other non-heap memory pools:

List<MemoryPoolMXBean> memoryPoolMXBeans = java.lang.management.ManagementFactory.getMemoryPoolMXBeans();

for (MemoryPoolMXBean bean : memoryPoolMXBeans) {
    //Iterate over pools here
}
link|improve this answer
thanks, I'll check this out :) – Hoàng Long Jun 9 '11 at 10:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.