1

I installed a tomcat 7 on windows 7. To do so:

  • I unzipped tha archive I got from the official website in the program files folder.
  • I installed the jre 7.
  • I set up JAVA_HOME and CATALINA_HOME environnment variables
  • I ran the startup.bat from the bin directory: the command line window tells me "org.apache.catalina.startup.Catalina start"
  • when I open up a browser and type localhost:8080 I get a HTTP 500 error.

what's wrong with my install ?

4

1 に答える 1

3

JAVA_HOME問題は、環境変数を設定していないことです。

設定手順JAVA_HOME.

  1. Oracle Web サイトにアクセスし、jdk 6 または 7をダウンロードします。インストールします。
  2. デスクトップまたはプログラム メニューの [マイ コンピュータ] アイコンを右クリックします。
  3. 「高度なシステム設定」をクリックします。「詳細」タブを選択し、 「環境変数」ボタンをクリックします。
  4. システム変数の下で、「新規...」ボタンをクリックします。[変数名] テキスト ボックスに と入力しJAVA_HOMEます。変数値ボックスには、jre のインストール パスを入力しますC:\Program Files\Java\jdk1.6.0_11
于 2012-04-16T12:10:57.190 に答える