windows下直接點擊startup.bat啟動tomcat服務

來源:互聯網
上載者:User

   在XP上明明已經安裝了JDK1.5並設定好了JAVA_HOME,可偏偏Tomcat在啟動過程中找不到。

  報錯資訊如下:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined At least one of these environment variable is needed to run this program;提示找不到java_home各jre_home路徑,何解?

  原因不知道了,下面來看解決辦法:

  1、分析startup.bat啟動指令碼:發現其調用了catalina.bat,而catalina.bat調用了setclasspath.bat

  2、在setclasspath.bat的頭部定義了JAVA_HOME和JRE_HOME的值,那麼在這裏手動設定JAVA_HOME變數

  rem

  rem Set CLASSPATH and Java options

  rem

  rem $Id: setclasspath.bat 505241 2007-02-09 10:22:58Z jfclere $

  rem

  set JAVA_HOME=C:Program FilesJavajdk1.5.0_05

  set JRE_HOME=C:Program FilesJavajre1.5.0_05

  rem Make sure prerequisite environment variables are set

  if not "%JAVA_HOME%" == "" goto gotJdkHome

  if not "%JRE_HOME%" == "" goto gotJreHome

  echo Neither the JAVA_HOME nor the JRE_HOME environment variable is defined

  echo At least one of these environment variable is needed to run this program

  goto exit

  :gotJreHome

  if not exist "%JRE_HOME%binjava.exe" goto noJavaHome

  if not exist "%JRE_HOME%binjavaw.exe" goto noJavaHome

  if not ""%1"" == ""debug"" goto okJavaHome

  echo JAVA_HOME should point to a JDK in order to run in debug mode.

  goto exit

  :gotJdkHome

  if not exist "%JAVA_HOME%binjava.exe" goto noJavaHome

  if not exist "%JAVA_HOME%binjavaw.exe" goto noJavaHome

  if not exist "%JAVA_HOME%binjdb.exe" goto noJavaHome

  if not exist "%JAVA_HOME%binjavac.exe" goto noJavaHome

  if not "%JRE_HOME%" == "" goto okJavaHome

  set JRE_HOME=%JAVA_HOME%

  goto okJavaHome

  :noJavaHome

  echo The JAVA_HOME environment variable is not defined correctly

  echo This environment variable is needed to run this program

  echo NB: JAVA_HOME should point to a JDK not a JRE

  goto exit

  :okJavaHome

  if not "?SEDIR%" == "" goto gotBasedir

  echo The BASEDIR environment variable is not defined

  echo This environment variable is needed to run this program

  goto exit

  :gotBasedir

  if exist "?SEDIR%binsetclasspath.bat" goto okBasedir

  echo The BASEDIR environment variable is not defined correctly

  echo This environment variable is needed to run this program

  goto exit

  :okBasedir

  rem Set the default -Djava.endorsed.dirs argument

  set JAVA_ENDORSED_DIRS=?SEDIR%endorsed

  rem Set standard CLASSPATH

  rem Note that there are no quotes as we do not want to introduce random

  rem quotes into the CLASSPATH

  if not exist "%JAVA_HOME%bintools.jar" goto noJavac

  set CLASSPATH=%JAVA_HOME%libtools.jar

  :noJavac

  rem Set standard command for invoking Java.

  rem Note that NT requires a window name argument when using start.

  rem Also note the quoting as JAVA_HOME may contain spaces.

  set _RUNJAVA="%JRE_HOME%binjava"

  set _RUNJAVAW="%JRE_HOME%binjavaw"

  set _RUNJDB="%JAVA_HOME%binjdb"

  set _RUNJAVAC="%JAVA_HOME%binjavac"

  goto end

  :exit

  exit /b 1

  :end

  3、重啟tomcat,敲入http://localhost:8080驗證,問題解決。

  tomcat5需要jdk1.6做支撐,jdk1.5不能夠。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.