PROTECTED]
Sent: Friday, July 16, 2004 9:33 AM
To: Tomcat Users List
Subject: Re: How to set JVM Max Memory
On Fri, Jul 16, 2004 at 09:22:29AM -0500, Hofmann, Benjamin wrote:
: Has anyone experienced any memory leaks with Tomcat 5? One of my
sites
: was written by an outside vendor and it acts lik
On Fri, Jul 16, 2004 at 09:22:29AM -0500, Hofmann, Benjamin wrote:
: Has anyone experienced any memory leaks with Tomcat 5? One of my sites
: was written by an outside vendor and it acts like it has a memory leak
: and I'm not sure if it is the programming or the container.
A profiler would tell
ailto:[EMAIL PROTECTED]
Sent: Friday, July 16, 2004 9:11 AM
To: Tomcat Users List
Subject: Re: How to set JVM Max Memory
Add one or both of the following to your start up scripts as
java command line options:
-mx1024M (or -Xmx1024M) to set the max to 1024 Mb
-ms256M (or -Xms256M) to set the min t
Add one or both of the following to your start up scripts as
java command line options:
-mx1024M (or -Xmx1024M) to set the max to 1024 Mb
-ms256M (or -Xms256M) to set the min to 256 Mb
in my startup script I use this line:
setenv JAVA_OPTS "-ms256M -mx1024M -Djava.awt.headless=true"
- Dan Obr