Dec 12, 2006 #1 kmth17 IS-IT--Management Dec 12, 2006 2 US How do I envoke the min and max memory settings for the tomcat process, version 5.0.28, in true64 unix?
How do I envoke the min and max memory settings for the tomcat process, version 5.0.28, in true64 unix?
Dec 13, 2006 #2 sedj Programmer Aug 6, 2002 5,610 You need to alter catalina.sh . In Linux, one way would be to replace : "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS with : "$_RUNJAVA" -Xms256m -Xmx512m $JAVA_OPTS $CATALINA_OPTS -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk Upvote 0 Downvote
You need to alter catalina.sh . In Linux, one way would be to replace : "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS with : "$_RUNJAVA" -Xms256m -Xmx512m $JAVA_OPTS $CATALINA_OPTS -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
Dec 13, 2006 Thread starter #3 kmth17 IS-IT--Management Dec 12, 2006 2 US Thanks, I'll give it a shot... Upvote 0 Downvote