Recurring “PermGen” in Tomcat 6

前端 未结 6 1211
盖世英雄少女心
盖世英雄少女心 2020-12-04 16:00

I keep getting a \"PermGen\" error on my Tomcat 6 server.

I know what application is causing the problem, but I am not sure why it is doing so. The application is

相关标签:
6条回答
  • 2020-12-04 16:45

    try this : IN Linux Machines

    export JAVA_OPTS="-XX:PermSize=128m"

    0 讨论(0)
  • 2020-12-04 16:45

    I think you might have many JSPs in your application. There is a known issue in tomcat where restarting a deployed application with many JSPs causes PermGen issues because tomcat recompiles and reloads all these classes again. Increasing the size as mentioned in the previous post should help.

    0 讨论(0)
  • 2020-12-04 16:48

    Try the following JVM switches:

    -XX:+UseConcMarkSweepGC
    -XX:+CMSPermGenSweepingEnabled
    -XX:+CMSClassUnloadingEnabled
    

    Upping the permgen space with -XX:MaxPermSize just delays the problem.

    Please see this comment: How to deal with “java.lang.OutOfMemoryError: PermGen space” error

    That indirectly pointed me to these two posts: problem, solution

    0 讨论(0)
  • 2020-12-04 16:48

    I have seen lots of permgen errors when tomcat is reloaded after a code change when using hibernate and spring, I think its due to the logger/ehcache instances not being shut down properly.

    0 讨论(0)
  • 2020-12-04 16:54

    The PermGen is used to store class definitions and the interned string pool. Your code could be filling it (if it calls intern needlessly), but more likely is that the default is undersized for your application.

    This is because Tomcat will load new classes every time you deploy a WAR -- or, if you are working in a development environment, every time you edit a JSP. Those should eventually get cleaned up, but in an active development environment you can have periods where there are both old and new instances loaded. Or, if you're in a production environment and have a large web-app, you might simply need more space.

    To set the permgen size, use -XX:MaxPermSize=SIZE

    The following links may be helpful: tuning GC (this is the 1.5 edition), GC FAQ (1.4.2 edition), Hotspot VM options (I believe this is 1.6)

    0 讨论(0)
  • 2020-12-04 16:56

    I agree that increasing the permgen space with -XX:MaxPermSize just delays the problem. I tried increasing the permgen and after that I started getting the same error after I sent more number of requests to my server. Additional flags like -XX:+CMSClassUnloadingEnabled is suggested even though it will decrease the performance little bit.

    0 讨论(0)
提交回复
热议问题