Setting max Heap size in Tomcat

2001-03-15 Thread Bhalchandra Patil
Hi, I am facing out of memory problem after continuous access of the tomcat. I want to set the maximum heap size that can be used by TOMCAT. what do i need to do for changing the max heap size? regards, Bhala

Re: Setting max Heap size in Tomcat

2001-03-15 Thread Gavin_Panella
Tomcat is a Java application like any other so you can change the max heap size the same as you would for anything else. For the Sun JDK 1.3 (and probably 1.2) all you have to do is run it like: java -Xmx128M some.class.to.Run Just replace the "128M" with the maximum heap size. Type

Re: Setting max Heap size in Tomcat

2001-03-15 Thread Bhalchandra Patil
garbage collected. Do i need to do anything specific for enabling the garbage collector in tomcat environment? regards, Bhala - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 15, 2001 6:36 PM Subject: Re: Setting max Heap size in Tomcat Tomcat