How to deal with "java.lang.OutOfMemoryError: PermGen space" error - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T05:46:26Zhttp://stackoverflow.com/feeds/question/88235http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error19How to deal with "java.lang.OutOfMemoryError: PermGen space" errorChris2008-09-17T22:13:48Z2009-11-25T20:54:02Z
<p>Recently I ran into this error in my web application:</p>
<pre><code>java.lang.OutOfMemoryError: PermGen space
</code></pre>
<p>It's a typical Hibernate/JPA + IceFaces/JSF application running on Tomcat 6 and JDK 1.6.</p>
<p>Apparently this can occur after redeploying an application a few times.</p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/88262#8826215Answer by Chris for How to deal with "java.lang.OutOfMemoryError: PermGen space" errorChris2008-09-17T22:17:16Z2008-09-17T22:17:16Z<p>The solution was to add these flags to JVM command line when Tomcat is started:</p>
<pre><code>-XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled
</code></pre>
<p>You can do that by shutting down the tomcat service, then going into the Tomcat/bin directory and running tomcat6w.exe. Under the "Java" tab, add the arguments to the "Java Options" box. Click "OK" and then restart the service.</p>
<p>Source: orx's comment on <a href="http://www.jroller.com/agileanswers/entry/preventing_java_s_java_lang" rel="nofollow">Eric's Agile Answers</a>.</p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/88307#883072Answer by Jeremy for How to deal with "java.lang.OutOfMemoryError: PermGen space" errorJeremy2008-09-17T22:23:45Z2008-09-17T22:23:45Z<p>Alternatively, you can switch to JRockit which handling permgen differently then sun's jvm. It generally has better performance as well.</p>
<p><a href="http://www.bea.com/jrockit/" rel="nofollow">http://www.bea.com/jrockit/</a></p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/89392#893921Answer by Tim Howland for How to deal with "java.lang.OutOfMemoryError: PermGen space" errorTim Howland2008-09-18T02:09:46Z2008-09-18T02:09:46Z<p>JRockit resolved this for me as well; however, I noticed that servlet restart times were much worse, so while it was better in production, it was kind of a drag in developemnt.</p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/89748#897485Answer by jeff.skj for How to deal with "java.lang.OutOfMemoryError: PermGen space" errorjeff.skj2008-09-18T03:29:11Z2008-09-18T03:29:11Z<p>use the command line parameter -XX:MaxPermGen=128m for a Sun JVM. (obviously substituting 128 for whatever size you need)</p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/343595#3435952Answer by for How to deal with "java.lang.OutOfMemoryError: PermGen space" error2008-12-05T11:43:23Z2008-12-05T11:43:23Z<p>see <a href="http://blogs.sun.com/fkieviet/entry/classloader_leaks_the_dreaded_java" rel="nofollow">Classloader leaks: the dreaded "java.lang.OutOfMemoryError: PermGen space" exception</a></p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/595706#5957060Answer by Priyanka for How to deal with "java.lang.OutOfMemoryError: PermGen space" errorPriyanka2009-02-27T17:17:11Z2009-02-27T17:17:11Z<p>I still keep getting the error despite trying the </p>
<pre><code>-XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled
</code></pre>
<p>I have also tried </p>
<pre><code>-XX:MaxPermGen=128m
</code></pre>
<p>Nothing seems to work on my Sun JDK 1.6.0_12, Any clue? Should move to Jrockit JVM</p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/636607#6366070Answer by bassist for How to deal with "java.lang.OutOfMemoryError: PermGen space" errorbassist2009-03-11T22:19:22Z2009-03-11T22:19:22Z<p>Try -XX:MaxPermGen=256m and if it persists, try -XX:MaxPermGen=512m</p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/636623#6366230Answer by Oscar Reyes for How to deal with "java.lang.OutOfMemoryError: PermGen space" errorOscar Reyes2009-03-11T22:24:55Z2009-03-11T22:24:55Z<p>The configuration of the memory depends on the nature of your app.</p>
<p>What are you doing?</p>
<p>What's the amount of transactions precessed?</p>
<p>How much data are you loading?</p>
<p>etc.</p>
<p>etc.</p>
<p>etc</p>
<p>Probably you could profile your app and start cleaning up some modules from your app. </p>
<blockquote>
<p><em>Apparently this can occur after redeploying an application a few times</em></p>
</blockquote>
<p>Tomcat has hot deploy but it consumes memory. Try restarting your container once in a while. Also you will need to know the amount of memory needed to run in production mode, this seems a good time for that research. </p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/835269#8352692Answer by toesterdahl for How to deal with "java.lang.OutOfMemoryError: PermGen space" errortoesterdahl2009-05-07T15:15:28Z2009-05-07T15:15:28Z<p>You better try <strong>-XX:MaxPermSize=128M</strong> rather than -XX:MaxPermGen=128M. </p>
<p>I can not tell the precise use of this memory pool, but it have to do with the number of classes loaded into the JVM. (Thus enabling class unloading for tomcat can resolve the problem.) If your applications generates and compiles classes on the run it is more likely to need a memory pool bigger than the default. </p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error/1067325#10673250Answer by Pankaj Shinde for How to deal with "java.lang.OutOfMemoryError: PermGen space" errorPankaj Shinde2009-07-01T04:54:18Z2009-07-01T04:54:18Z<p>I have a combination of Hibernate+Eclipse RCP, tried using -XX:MaxPermSize=512m and -XX:PermSize=512m and it seems to be working for me.</p>