RE: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Harris, Jeffrey E.
-Original Message- From: Kevin Jenkins [mailto:rak...@jenkinssoftware.com] Sent: Sunday, March 31, 2013 1:21 PM To: Tomcat Users List Subject: Tomcat how to set -Xms and -Xmx If I run tomcat7w.exe (windows) there is a tab where I can set the initial and maximum memory pool to 2560.

Re: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Michael-O
Am 2013-03-31 19:20, schrieb Kevin Jenkins: If I run tomcat7w.exe (windows) there is a tab where I can set the initial and maximum memory pool to 2560. However, I don't want to use tomcat7w.exe, I just want to run the batch file manually (startup.bat). However, I can't figure out how to set

RE: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Harris, Jeffrey E.
-Original Message- From: Harris, Jeffrey E. [mailto:jeffrey.har...@mantech.com] Sent: Sunday, March 31, 2013 1:32 PM To: Tomcat Users List Subject: RE: Tomcat how to set -Xms and -Xmx -Original Message- From: Kevin Jenkins [mailto:rak...@jenkinssoftware.com] Sent

Re: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Kevin Jenkins
, 2013 1:32 PM To: Tomcat Users List Subject: RE: Tomcat how to set -Xms and -Xmx -Original Message- From: Kevin Jenkins [mailto:rak...@jenkinssoftware.com] Sent: Sunday, March 31, 2013 1:21 PM To: Tomcat Users List Subject: Tomcat how to set -Xms and -Xmx If I run

RE: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Harris, Jeffrey E.
-Original Message- From: Kevin Jenkins [mailto:rak...@jenkinssoftware.com] Sent: Sunday, March 31, 2013 2:06 PM To: Tomcat Users List Subject: Re: Tomcat how to set -Xms and -Xmx I did this: SET JAVA_OPTS=-Xms2560 -Xmx2560 call %EXECUTABLE% start %CMD_LINE_ARGS% On Sun, Mar

Re: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Kevin Jenkins
- From: Harris, Jeffrey E. [mailto:jeffrey.har...@mantech.com] Sent: Sunday, March 31, 2013 1:32 PM To: Tomcat Users List Subject: RE: Tomcat how to set -Xms and -Xmx -Original Message- From: Kevin Jenkins [mailto:rak...@jenkinssoftware.com] Sent: Sunday, March 31, 2013 1:21 PM

RE: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Harris, Jeffrey E.
-Original Message- From: Kevin Jenkins [mailto:rak...@jenkinssoftware.com] Sent: Sunday, March 31, 2013 2:09 PM To: Tomcat Users List Subject: Re: Tomcat how to set -Xms and -Xmx Actually that does not work, sorry for the too-soon post. If I modify startup.bat as follows: SET

Re: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Mark Eggers
On 3/31/2013 10:20 AM, Kevin Jenkins wrote: If I run tomcat7w.exe (windows) there is a tab where I can set the initial and maximum memory pool to 2560. However, I don't want to use tomcat7w.exe, I just want to run the batch file manually (startup.bat). However, I can't figure out how to set

Re: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Kevin Jenkins
I found the answer. In catilina.bat change set JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG% To: set JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG% -Xms2560M -Xmx2560M Such a common operation should not be so obscure and difficult to figure out On Sun, Mar 31, 2013 at 11:38 AM, Mark Eggers

Re: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jeffrey, On 3/31/13 1:32 PM, Harris, Jeffrey E. wrote: -Original Message- From: Kevin Jenkins [mailto:rak...@jenkinssoftware.com] Sent: Sunday, March 31, 2013 1:21 PM To: Tomcat Users List Subject: Tomcat how to set -Xms and -Xmx If

Re: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Kevin, On 3/31/13 4:28 PM, Kevin Jenkins wrote: I found the answer. In catilina.bat change set JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG% To: set JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG% -Xms2560M -Xmx2560M You don't want to do this. Instead, you

RE: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Caldarale, Charles R
From: Kevin Jenkins [mailto:rak...@jenkinssoftware.com] Subject: Re: Tomcat how to set -Xms and -Xmx I found the answer. In catilina.bat change That's the wrong answer. Such a common operation should not be so obscure and difficult to figure out It's not, but you're doing it the hard way

RE: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Caldarale, Charles R
From: Harris, Jeffrey E. [mailto:jeffrey.har...@mantech.com] Subject: RE: Tomcat how to set -Xms and -Xmx Add a call setenv.bat (with path as necessary) to startup.bat, or just add the relevant SET statements directly to startup.bat. That's completely unnecessary, and inappropriate

Re: Tomcat how to set -Xms and -Xmx

2013-03-31 Thread Neven Cvetkovic
On Sun, Mar 31, 2013 at 4:54 PM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Harris, Jeffrey E. [mailto:jeffrey.har...@mantech.com] Subject: RE: Tomcat how to set -Xms and -Xmx Add a call setenv.bat (with path as necessary) to startup.bat, or just add the relevant SET