You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2001/03/10 06:41:16 UTC

[Bug 319] New - Tomcat does not launch with given Unix script files BugRat Report#581

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=319

*** shadow/319	Fri Mar  9 21:41:16 2001
--- shadow/319.tmp.13635	Fri Mar  9 21:41:16 2001
***************
*** 0 ****
--- 1,31 ----
+ +============================================================================+
+ | Tomcat does not launch with given Unix script files BugRat Report#581      |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 319                         Product: Tomcat 3                |
+ |       Status: UNCONFIRMED                 Version: 3.2.1 Final             |
+ |   Resolution:                            Platform: All                     |
+ |     Severity: Normal                   OS/Version: All                     |
+ |     Priority: High                      Component: Config                  |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: cmanolache@yahoo.com                                         |
+ |  Reported By: kkycia@hydrosoftenergie.com                                  |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              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.

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, email: tomcat-dev-help@jakarta.apache.org