I am working with tomcat 6.0, and while I am indexing (not while i am starting tomcat), I have a permgen space error.
How could I increase that space??

Thanks

link|improve this question

33% accept rate
4  
You should search for similar questions before you place one. You should also start accepting some answers. Meanwhile see here: stackoverflow.com/questions/473011/… – user159088 Jun 9 '10 at 7:37
I checkes similar question before, but don't help me. Where is -XX:NewSize=2.125m going? – Blanca Jun 9 '10 at 7:55
feedback

1 Answer

up vote 7 down vote accepted

You can use :

-XX:MaxPermSize=128m

to increase the space. But this ususally only postpones the inevitable.

You can also enable the PermGen to be garbage collected

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

Usually this occurs when doing lots of redeploys. I am surprised you have it using something like indexing. Use virtualvm or jconsole to monitor the Perm gen space and check it levels off after warming up the indexing.

Maybe you should consider changing to another JVM like the IBM JVM. It does not have a Permanenet Generation and is immune to this issue.

link|improve this answer
Thanks!! But where must I write it down?? I guess in one flile here: tomcat/conf Am I wrong?? – Blanca Jun 9 '10 at 8:05
For tomcat you can create an environment variable CATALINA_OPTS with as value these options concatenated. The startup script will add these to the Java commandline before starting tomcat. This cannot be done from tomcat configuration as the JVM is already configured at that point. – Peter Tillemans Jun 9 '10 at 8:34
feedback

Your Answer

 
or
required, but never shown

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