|
From: John L. <mai...@st...> - 2005-11-08 01:40:27
|
Thanks! I only use the error detection and recovery features as I run the containers on linux. I was just wondering if the wrapper was necessary with the new tomcat 5.5 and its better memory management. John Larsen Storm's i Media, LLC. Java | Pipe ................:DISCLAIMER:..................... This e-mail and the information it contains is confidential and is intended only for the addressee(s) named above or in the case of an incorrectly addressed e-mail message, the intended recipient. If you have received this e-mail and you are not the intended recipient any disclosure, distribution, copying or any other use of this information is strictly prohibited. If you have received this e-mail in error, please accept our apologies and please notify the sender by e-mailing jo...@st.... Please then delete this e-mail and any attachment from your system. The views and opinions expressed in this e-mail are the author's own and may not reflect the views and opinions of Storm's i Media, LLC. Although this email, including any attachments, is believed to be free of any virus, or other defect which might affect any computer or IT systeminto which it is received and opened, it is the responsibility of the recipient to ensure that it is virus free, and no responsibility is accepted for any loss or damage arising in any way from its use. On Nov 7, 2005, at 1:14 AM, Leif Mortenson wrote: > John, > It had been a while since I tried out the newer Tomcat versions so > I gave it a try with > the latest and greatest Tomcat 5.5.12. Following the directions on > the Wrapper site, > it worked perfectly. There were a couple differences in the actual > configuration values > as the new version appears to expect a couple more system properties. > But the > instructions lead the user to the correct config file. > > I went ahead and attached it to this mail. > > It looks like Tomcat 5.5 contains its own native binary capable of > installing and > running Tomcat as a service. If that is the only feature of the > Wrapper that you are > looking for then it should meet your needs. The Wrapper does go much > farther > however, particularly the error detection and recovery features. > > Cheers, > Leif > > John Larsen wrote: > >> Hi - I know long time no post. >> >> Say does the wrapper work with tomcat 5.5 or does it even need it >> since memory >> managment appears to be much improved? >> >> Thanks! >> >> John >> > > #******************************************************************** > # Wrapper Properties > #******************************************************************** > # Java Application > wrapper.java.command=%JAVA_HOME%/bin/java > > # Java Main class. This class must implement the WrapperListener > interface > # or guarantee that the WrapperManager class is initialized. Helper > # classes are provided to do this for you. See the Integration > section > # of the documentation for details. > wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperStartStopApp > > # Java Classpath (include wrapper.jar) Add class path elements as > # needed starting from 1 > wrapper.java.classpath.1=../common/lib/wrapper.jar > wrapper.java.classpath.2=%JAVA_HOME%/lib/tools.jar > wrapper.java.classpath.3=../bin/bootstrap.jar > > # Java Library Path (location of Wrapper.DLL or libwrapper.so) > wrapper.java.library.path.1=../common/lib > > # Java Additional Parameters > wrapper.java.additional.1=- > Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager > wrapper.java.additional.2=-Djava.util.logging.config.file=../conf/ > logging.properties > wrapper.java.additional.3=-Djava.endorsed.dirs=../common/endorsed > wrapper.java.additional.4=-Dcatalina.base=.. > wrapper.java.additional.5=-Dcatalina.home=.. > wrapper.java.additional.6=-Djava.io.tmpdir=../temp > > # Initial Java Heap Size (in MB) > #wrapper.java.initmemory=3 > > # Maximum Java Heap Size (in MB) > #wrapper.java.maxmemory=64 > > # Application parameters. Add parameters as needed starting from 1 > wrapper.app.parameter.1=org.apache.catalina.startup.Bootstrap > wrapper.app.parameter.2=1 > wrapper.app.parameter.3=start > wrapper.app.parameter.4=org.apache.catalina.startup.Bootstrap > wrapper.app.parameter.5=true > wrapper.app.parameter.6=1 > wrapper.app.parameter.7=stop > > #******************************************************************** > # Wrapper Logging Properties > #******************************************************************** > # Format of output for the console. (See docs for formats) > wrapper.console.format=PM > > # Log Level for console output. (See docs for log levels) > wrapper.console.loglevel=INFO > > # Log file to use for wrapper output logging. > wrapper.logfile=../logs/wrapper.log > > # Format of output for the log file. (See docs for formats) > wrapper.logfile.format=LPTM > > # Log Level for log file output. (See docs for log levels) > wrapper.logfile.loglevel=INFO > > # Maximum size that the log file will be allowed to grow to before > # the log is rolled. Size is specified in bytes. The default value > # of 0, disables log rolling. May abbreviate with the 'k' (kb) or > # 'm' (mb) suffix. For example: 10m = 10 megabytes. > wrapper.logfile.maxsize=0 > > # Maximum number of rolled log files which will be allowed before old > # files are deleted. The default value of 0 implies no limit. > wrapper.logfile.maxfiles=0 > > # Log Level for sys/event log output. (See docs for log levels) > wrapper.syslog.loglevel=NONE > > #******************************************************************** > # Wrapper Windows Properties > #******************************************************************** > # Title to use when running as a console > wrapper.console.title=Tomcat > > #******************************************************************** > # Wrapper Windows NT/2000/XP Service Properties > #******************************************************************** > # WARNING - Do not modify any of these properties when an application > # using this configuration file has been installed as a service. > # Please uninstall the service before modifying this section. The > # service can then be reinstalled. > > # Name of the service > wrapper.ntservice.name=Tomcat > > # Display name of the service > wrapper.ntservice.displayname=Tomcat > > # Description of the service > wrapper.ntservice.description=Tomcat > > # Service dependencies. Add dependencies as needed starting from 1 > wrapper.ntservice.dependency.1= > > # Mode in which the service is installed. AUTO_START or DEMAND_START > wrapper.ntservice.starttype=AUTO_START > > # Allow the service to interact with the desktop. > wrapper.ntservice.interactive=false > |