Tomcat Run program is slow to run for a period of time error: Java.lang.OutOfMemoryError:PermGen space

Source: Internet
Author: User

Java.lang.OutOfMemoryError:PermGen space is permanent Generation space, which is the permanent storage area of memory.

Since this memory is primarily stored by the JVM with class and meta information, class is placed in the PermGen space area when it is loaded, and unlike the heap area where the instance is stored, Sun's GC does not run on the main program for PermGen Space for cleanup, so if your app loads a lot of classes, there's a good chance that permgen space will overflow.

Workaround: Manually set the MaxPermSize size

Under Window

To modify Tomcat_home/bin/catalina.bat, add the following line to the JAVA code "echo" Using catalina_base: $CATALINA _base "": Set Java_opts=%java_opts %-server-xx:permsize=128m-xx:maxpermsize=512m

Linux under

Modify Tomcat_home/bin/catalina.sh

Add the following: java_opts= "$JAVA _opts-server-xx:permsize=128m-xx:maxpermsize=512m"

Tomcat Run program is slow to run for a period of time error: Java.lang.OutOfMemoryError:PermGen space

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.