Re: Increasing Heap Size and Max Perm Size

2009-08-19 Thread André Warnier
Daniele Development-ML wrote: Found a solution here: http://www.coderanch.com/t/85725/Tomcat/heap-space-setting-Tomcat-Linux Practically, everything works when setting the above options through CATALINA_OPTS variable. Dan

Re: Increasing Heap Size and Max Perm Size

2009-08-19 Thread Daniele Development-ML
stigation on this, I'm glad to try them. Dan On Wed, Aug 19, 2009 at 2:08 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Daniele Development-ML [mailto:daniele@googlemail.com] > > Subject: Re: Increasing Heap Size and Max Perm Size > > >

RE: Increasing Heap Size and Max Perm Size

2009-08-19 Thread Caldarale, Charles R
> From: Daniele Development-ML [mailto:daniele@googlemail.com] > Subject: Re: Increasing Heap Size and Max Perm Size > > Practically, everything works when setting the above options > through CATALINA_OPTS variable. Someone's confused. JAVA_OPTS works fine, but it affe

Re: Increasing Heap Size and Max Perm Size

2009-08-19 Thread Daniele Development-ML
Found a solution here: http://www.coderanch.com/t/85725/Tomcat/heap-space-setting-Tomcat-Linux Practically, everything works when setting the above options through CATALINA_OPTS variable. 2009/8/19 Markus Schönhaber > Da

Re: Increasing Heap Size and Max Perm Size

2009-08-19 Thread André Warnier
Daniele Development-ML wrote: .. Just a detail about the usage of the list : when you respond, respond to the list only, unless specifically asked to post to the one person in particular. Since we are all subscribed to the list, we all get all the list messages anyway. If you in addition send

Re: Increasing Heap Size and Max Perm Size

2009-08-19 Thread Markus Schönhaber
Daniele Development-ML: > Forgot to mention that when I try with the following command: > java -Xms512m -Xmx750m > > it does succeed in creating the JVM [...] > I don't understand why I get different behaviour passing this option the JVM > when starting Tomcat, and when I give directly to the JVM

Re: Increasing Heap Size and Max Perm Size

2009-08-19 Thread Daniele Development-ML
Forgot to mention that when I try with the following command: java -Xms512m -Xmx750m it does succeed in creating the JVM - differently (but obviously), if I try: java -Xms512m -Xmx6750m it fails (as expected). I don't understand why I get different behaviour passing this option the JVM when sta

Re: Increasing Heap Size and Max Perm Size

2009-08-19 Thread Daniele Development-ML
The JVM actually recognises that the value being set/asked for is 100 as when I shut it down, I get a message saying that a JVM with the specified 100m of memory cannot be created. On Tue, Aug 18, 2009 at 11:48 PM, André Warnier wrote: > Daniele Development-ML wrote: > >> Hi all, >> >> I'm trying

Re: Increasing Heap Size and Max Perm Size

2009-08-18 Thread André Warnier
Daniele Development-ML wrote: Hi all, I'm trying to increase the sizes of the heap and of the max perm by passing the options with the values (in catalina.sh) JAVA_OPTS="$JAVA_OPTS -Xmx=100m -XX:MaxPermSize=350m -Dfile.encoding=UTF-8" Try without the "=" signs ? -Xmx100m

Re: Increasing Heap Size and Max Perm Size

2009-08-18 Thread Leon Rosenberg
the system actually gave you the answer: Invalid maximum heap size: -Xmx=100m Could not create the Java virtual machine. If you are going to give the PermSpace 350M, you must have a lot of memory, so giving half gb for heap won't heart: JAVA_OPTS="$JAVA_OPTS -Xmx=512m -XX:MaxPermSize=350m -Dfile.e

Increasing Heap Size and Max Perm Size

2009-08-18 Thread Daniele Development-ML
Hi all, I'm trying to increase the sizes of the heap and of the max perm by passing the options with the values (in catalina.sh) JAVA_OPTS="$JAVA_OPTS -Xmx=100m -XX:MaxPermSize=350m -Dfile.encoding=UTF-8" but the VM cannot be created and from the catalina.out file I get this printout: Invalid m

RE: Perm Size

2007-06-06 Thread Caldarale, Charles R
> From: Milanez, Marcus [mailto:[EMAIL PROTECTED] > Subject: RES: Perm Size > > -D-XX:-UseSerialGC > -D-XX:MaxPermSize=256m > -D-XX:PermSize=128m The -D prefix is not used for any of the above options. -D is used only to set Java system properties, which heap-relat

RES: Perm Size

2007-06-06 Thread Milanez, Marcus
ool" fields and it started working once again. Previously I had tested those values under Windows XP without problems... -Mensagem original- De: Milanez, Marcus [mailto:[EMAIL PROTECTED] Enviada em: quarta-feira, 6 de junho de 2007 09:12 Para: Tomcat Users List Assunto: RES: Perm Si

RES: Perm Size

2007-06-06 Thread Milanez, Marcus
08:56 Para: Tomcat Users List Assunto: RES: Perm Size Hi, Thanks for your response Martin, and no, JAVA_OPTS has no effect when I use tomcat6w to register options. To monitor tgese parameters I'm using Lambda Probe. Chuck, I swear I've tried almost everything to get done, but using

RES: Perm Size

2007-06-06 Thread Milanez, Marcus
em: terça-feira, 5 de junho de 2007 18:42 Para: Tomcat Users List Assunto: RE: Perm Size > From: Milanez, Marcus [mailto:[EMAIL PROTECTED] > Subject: Perm Size > > I'm trying to use the following parameters in my Tomcat 6 server > through tomcat6w.exe, but they don't seem to

Re: Perm Size

2007-06-05 Thread Mark Thomas
Caldarale, Charles R wrote: > Note to Mark T: > The service.bat script for 6.0.13 still references > http://jakarta.apache.org/tomcat. Thanks. Fixed. Mark - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe,

RE: Perm Size

2007-06-05 Thread Caldarale, Charles R
> From: Milanez, Marcus [mailto:[EMAIL PROTECTED] > Subject: Perm Size > > I'm trying to use the following parameters in my Tomcat 6 > server through tomcat6w.exe, but they don't seem to take > any effect: > > -Dserver There's no such option as "-Ds

Re: Perm Size

2007-06-05 Thread Martin Gainty
t; Sent: Tuesday, June 05, 2007 4:07 PM Subject: Perm Size Hi, I'm trying to use the following parameters in my Tomcat 6 server through tomcat6w.exe, but they don't seem to take any effect: -Dserver -XX:-UseSerialGC -XX:MaxPermSize=256m -XX:PermSize=128m What happens is that my Perm Siz

Perm Size

2007-06-05 Thread Milanez, Marcus
Hi, I'm trying to use the following parameters in my Tomcat 6 server through tomcat6w.exe, but they don't seem to take any effect: -Dserver -XX:-UseSerialGC -XX:MaxPermSize=256m -XX:PermSize=128m What happens is that my Perm Size still has its default value, which is 64mb. What am I d