简体   繁体   中英

Recurring “PermGen” in Tomcat 6

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 using MySQL 5 and running on JDK 6.

Are there any tools/suggestions to diagnosis or analyze the underlying issue(s) with the specific application?

Thanks

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)

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

试试这个:在Linux机器上

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

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.

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.

我在使用hibernate和spring时代码更改后重新加载tomcat时看到了很多permgen错误,我认为这是因为logger / ehcache实例没有正常关闭。

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