Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to envoke memory settings for tomcat process?

Status
Not open for further replies.

kmth17

IS-IT--Management
Joined
Dec 12, 2006
Messages
2
Location
US
How do I envoke the min and max memory settings for the tomcat process, version 5.0.28, in true64 unix?
 
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
 
Thanks, I'll give it a shot...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top