How to deal with "java.lang.OutOfMemoryError: PermGen space" error - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:46:26Z http://stackoverflow.com/feeds/question/88235 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error 19 How to deal with "java.lang.OutOfMemoryError: PermGen space" error Chris 2008-09-17T22:13:48Z 2009-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#88262 15 Answer by Chris for How to deal with "java.lang.OutOfMemoryError: PermGen space" error Chris 2008-09-17T22:17:16Z 2008-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#88307 2 Answer by Jeremy for How to deal with "java.lang.OutOfMemoryError: PermGen space" error Jeremy 2008-09-17T22:23:45Z 2008-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#89392 1 Answer by Tim Howland for How to deal with "java.lang.OutOfMemoryError: PermGen space" error Tim Howland 2008-09-18T02:09:46Z 2008-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#89748 5 Answer by jeff.skj for How to deal with "java.lang.OutOfMemoryError: PermGen space" error jeff.skj 2008-09-18T03:29:11Z 2008-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#343595 2 Answer by for How to deal with "java.lang.OutOfMemoryError: PermGen space" error 2008-12-05T11:43:23Z 2008-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#595706 0 Answer by Priyanka for How to deal with "java.lang.OutOfMemoryError: PermGen space" error Priyanka 2009-02-27T17:17:11Z 2009-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#636607 0 Answer by bassist for How to deal with "java.lang.OutOfMemoryError: PermGen space" error bassist 2009-03-11T22:19:22Z 2009-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#636623 0 Answer by Oscar Reyes for How to deal with "java.lang.OutOfMemoryError: PermGen space" error Oscar Reyes 2009-03-11T22:24:55Z 2009-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#835269 2 Answer by toesterdahl for How to deal with "java.lang.OutOfMemoryError: PermGen space" error toesterdahl 2009-05-07T15:15:28Z 2009-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#1067325 0 Answer by Pankaj Shinde for How to deal with "java.lang.OutOfMemoryError: PermGen space" error Pankaj Shinde 2009-07-01T04:54:18Z 2009-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>