I need to configure Tomcat memory settings as part of a larger installation, so manually configuring tomcat with the configuration app after the fact is out of the question. I thought I could just throw the JVM memory settings into the JAVA_OPTS environment variable, but I'm testing that with jconsole to see if it works and it... doesn't.
As per the comment below, CATALINA_OPTS doesn't work either. So far, the only way I can get it to work is via the Tomcat configuration GUI, and that's not an acceptable solution for my problem.
Source: Tips4all, CCNA FINAL EXAM
Create a setenv.(sh|bat) file in the tomcat/bin directory with the environment variables that you want modified.
ReplyDeleteThe catalina script checks if the setenv script exists and runs it to set the environment variables. This way you can change the parameters to only one instance of tomcat and is easier to copy it to another instance.
Probably your configuration app has created the setenv script and thats why tomcat is ignoring the environment variables.
Use the CATALINA_OPTS environment variable.
ReplyDeleteIf you using Ubuntu 11.10 and apache-tomcat6 (installing from apt-get), you can put this configuration at /usr/share/tomcat6/bin/catalina.sh
ReplyDelete# -----------------------------------------------------------------------------
JAVA_OPTS="-Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Xms1024m \
-Xmx1024m -XX:NewSize=512m -XX:MaxNewSize=512m -XX:PermSize=512m \
-XX:MaxPermSize=512m -XX:+DisableExplicitGC"
After that, you can check your configuration via ps -ef | grep tomcat :)
Just to add to the previous comment, the documentation for the command line tool for updating the Tomcat service settings (if Tomcat is running as a service on Windows) is here. This tool updates the registry with the proper settings.
ReplyDeleteSo if you wanted to update the max memory setting for the Tomcat service you could run this (from the tomcat/bin directory), assuming the default service name of Tomcat5:
tomcat5 //US//Tomcat5 --JvmMx=512
I use following setenv.bat contents:
ReplyDelete==============setenv.bat============
set JAVA_OPTS=-XX:MaxPermSize=256m -Xms256M -Xmx768M -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=7777,server=y,suspend=n %JAVA_OPTS%
====================================
It also enables debugging and sets debug port to 7777, and appends previous content of JAVA_OPTS.
Handy for linux virtual machines; Use 75% of your total system memory for Tomcat. Yay AWK.
ReplyDeletePut at start of "{tomcat}/bin/startup.sh"
export CATALINA_OPTS="-Xmx`cat /proc/meminfo | grep MemTotal | awk '{ print $2*0.75 } '`k"
Not sure that it will be applicable solution for you. But the only way for monitoring tomcat memory settings as well as number of connections etc. that actually works for us is Lambda Probe.
ReplyDeleteIt shows most of informations that we need for Tomcat tunning. We tested it with Tomcat 5.5 and 6.0 and it works fine despite beta status and date of last update in end of 2006.
If you'd start Tomcat manually (not as service), then the CATALINA_OPTS environment variable is the way to go. If you'd start it as a service, then the settings are probably stored somewhere in the registry. I have Tomcat 6 installed in my machine and I found the settings at the HKLM\SOFTWARE\Apache Software Foundation\Procrun 2.0\Tomcat6\Parameters\Java key.
ReplyDeleteI like the idea of seting tomcat6 memory based on available server memory (it is cool because I don't have to change the setup after hardware upgrade). Here is my (a bit extended memory setup):
ReplyDeleteexport CATALINA_OPTS="-Xmxcat /proc/meminfo | grep MemTotal | awk '{
print $2*0.75 } 'k -Xmscat /proc/meminfo | grep MemTotal | awk '{
print $2*0.75 } 'k -XX:NewSize=cat /proc/meminfo | grep MemTotal |
awk '{ print $2*0.15 } 'k -XX:MaxNewSize=cat /proc/meminfo | grep
MemTotal | awk '{ print $2*0.15 } 'k -XX:PermSize=cat /proc/meminfo
| grep MemTotal | awk '{ print $2*0.15 } 'k -XX:MaxPermSize=cat
/proc/meminfo | grep MemTotal | awk '{ print $2*0.15 } 'k"
Put it to: "{tomcat}/bin/startup.sh" (e.g. "/usr/share/tomcat6/bin" for Ubuntu 10.10)