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: [EMAIL PROTECTED]                                         |
+ |  Reported By: [EMAIL PROTECTED]                                  |
+ |      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: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to