Bug report #581 has just been filed. You can view the report at the following URL: <http://znutar.cortexity.com/BugRatViewer/ShowReport/581> REPORT #581 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: medium Severity: critical Confidence: public Environment: Release: 3.2 JVM Release: 1.2.2-6 Operating System: Compaq Tru64 OS Release: v4.0f Platform: Unix Synopsis: Tomcat does not launch with given Unix script files Description: When launching Tomcat using ./startup.sh or ./tomcat.sh, the background process never runs because it complains of invalid parameters being passed on the command line. Perform all necessary steps on Compaq Tru64 v4.0f and simply type in (from $TOMCAT_HOME): ./bin/startup.sh To fix you must edit the tomcat.sh file (located in $TOMCAT_HOME/bin) and remove the double quotes (") around each and EVERY instance of $@. So instead of seeing a line as the following: $JAVACMD $TOMCAT_OPTS -Dtomcat.home=${TOMCAT_HOME} org.apache.tomcat.startup.Tomcat "$@" & You should have: $JAVACMD $TOMCAT_OPTS -Dtomcat.home=${TOMCAT_HOME} org.apache.tomcat.startup.Tomcat $@ & The reason for this is that somehow an empty parameter is being passed to Tomcat and it is continually complaining an invalid parameter was sent and subsequently displays the usage info.Title: BugRat Report # 581
BugRat Report # 581
Project: Tomcat | Release: 3.2 |
Category: Bug Report | SubCategory: New Bug Report |
Class: swbug | State: received |
Priority: medium | Severity: critical |
Confidence:
public
|
Submitter:
Kristopher Kycia ( [EMAIL PROTECTED] )
Date Submitted:
Dec 12 2000, 06:33:13 CST
Responsible:
Z_Tomcat Alias ( [EMAIL PROTECTED] )
- Synopsis:
- Tomcat does not launch with given Unix script files
- Environment: (jvm, os, osrel, platform)
- 1.2.2-6, Compaq Tru64, v4.0f, Unix
- Additional Environment Description:
- Report Description:
- When launching Tomcat using ./startup.sh or ./tomcat.sh, the background process never runs because it complains of invalid parameters being passed on the command line. Perform all necessary steps on Compaq Tru64 v4.0f and simply type in (from $TOMCAT_HOME): ./bin/startup.sh To fix you must edit the tomcat.sh file (located in $TOMCAT_HOME/bin) and remove the double quotes (") around each and EVERY instance of $@. So instead of seeing a line as the following: $JAVACMD $TOMCAT_OPTS -Dtomcat.home=${TOMCAT_HOME} org.apache.tomcat.startup.Tomcat "$@" & You should have: $JAVACMD $TOMCAT_OPTS -Dtomcat.home=${TOMCAT_HOME} org.apache.tomcat.startup.Tomcat $@ & The reason for this is that somehow an empty parameter is being passed to Tomcat and it is continually complaining an invalid parameter was sent and subsequently displays the usage info.