larryi 02/03/12 19:40:07 Modified: src/etc/jk wrapper.properties Log: Added quotes around wrapper.javabin in the wrapper.cmd_line. Submitted by: David Schreibman Added wrapper.jvm.options and some documentation. Revision Changes Path 1.4 +24 -4 jakarta-tomcat/src/etc/jk/wrapper.properties Index: wrapper.properties =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/etc/jk/wrapper.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- wrapper.properties 13 Oct 2001 02:25:13 -0000 1.3 +++ wrapper.properties 13 Mar 2002 03:40:07 -0000 1.4 @@ -1,7 +1,7 @@ # -# $Header: /home/cvs/jakarta-tomcat/src/etc/jk/wrapper.properties,v 1.3 2001/10/13 02:25:13 billbarker Exp $ -# $Revision: 1.3 $ -# $Date: 2001/10/13 02:25:13 $ +# $Header: /home/cvs/jakarta-tomcat/src/etc/jk/wrapper.properties,v 1.4 2002/03/13 03:40:07 larryi Exp $ +# $Revision: 1.4 $ +# $Date: 2002/03/13 03:40:07 $ # # # jk_service.properties - a bootstrup file for the Tomcat NT service. @@ -100,17 +100,37 @@ # wrapper.shutdown_port tells the service the identity of the port that # is used by AJP12/AJP13. # +# Ajp12 wrapper.shutdown_port=8007 +# Ajp13 +#wrapper.shutdown_port=8009 + # # Can either be ajp12 or ajp13 depending on your configuration. # +# Note: If you use ajp13, be sure to enable shutdown on the Ajp13Connector. +# For Tomcat 3.3 add: shutDownEnable="true" +# For Tomcat 3.3.1 add: shutdownEnable="true" or shutDownEnable="true" +# +# Note: Use of a shutdown "secret" (i.e. password) is not supported. +# # Default value is ajp12 # wrapper.shutdown_protocol=ajp12 # +# JVM Options +# +# Useful Options: +# -Xms256m = Initial heap size, modify for desired size +# -Xmx256m = Maximum heap size, modify for desired size +# -Xrs = Available in Jdk1.3.1 to avoid JVM termination during logoff +# +wrapper.jvm.options= + +# # This is the command line that is used to start Tomcat. You can *add* extra # parameters to it but you can not remove anything. # -wrapper.cmd_line=$(wrapper.javabin) -Djava.security.policy=="$(wrapper.tomcat_policy)" -Dtomcat.home="$(wrapper.tomcat_home)" -classpath $(wrapper.class_path) $(wrapper.startup_class) -config $(wrapper.server_xml) +wrapper.cmd_line="$(wrapper.javabin)" $(wrapper.jvm.options) -Djava.security.policy=="$(wrapper.tomcat_policy)" -Dtomcat.home="$(wrapper.tomcat_home)" -classpath $(wrapper.class_path) $(wrapper.startup_class) -config $(wrapper.server_xml)
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>