简体   繁体   English

Tomcat 不启动。 我哪里错了?

[英]Tomcat does not start. Where was I wrong?

I did everything according to the instructions, installed all environment variables, but it still does not start.我按照说明做了一切,安装了所有环境变量,但它仍然没有启动。 This is what is output in cmd when I try to start:这是我尝试启动时 output 在 cmd 中的内容:

C:\WINDOWS\system32>%CATALINA_HOME%\bin\startup.bat
Using CATALINA_BASE:   "D:\Tomcat"
Using CATALINA_HOME:   "D:\Tomcat"
Using CATALINA_TMPDIR: "D:\Tomcat\temp"
Using JRE_HOME:        "C:\Program Files\Java\jre1.8.0_131"
Using CLASSPATH:       "D:\Tomcat\bin\bootstrap.jar;D:\Tomcat\bin\tomcat-juli.jar"
C:\WINDOWS\system32>

A window is opened for the bat and disappears immediately.给蝙蝠开了一个window,立马消失。 There is nothing on http://127.0.0.1:8080/ . http://127.0.0.1:8080/上没有任何内容。 What could be the problem?可能是什么问题呢? Contents of startup.bat: startup.bat的内容:

@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements.  See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License.  You may obtain a copy of the License at
rem
rem     http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.

rem ---------------------------------------------------------------------------
rem Start script for the CATALINA Server
rem ---------------------------------------------------------------------------

setlocal

rem Guess CATALINA_HOME if not defined
set "CURRENT_DIR=%cd%"
if not "%CATALINA_HOME%" == "" goto gotHome
set "CATALINA_HOME=%CURRENT_DIR%"
if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome
cd ..
set "CATALINA_HOME=%cd%"
cd "%CURRENT_DIR%"
:gotHome
if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome
echo The CATALINA_HOME environment variable is not defined correctly
echo This environment variable is needed to run this program
goto end
:okHome

set "EXECUTABLE=%CATALINA_HOME%\bin\catalina.bat"

rem Check that target executable exists
if exist "%EXECUTABLE%" goto okExec
echo Cannot find "%EXECUTABLE%"
echo This file is needed to run this program
goto end
:okExec

rem Get remaining unshifted command line arguments and save them in the
set CMD_LINE_ARGS=
:setArgs
if ""%1""=="""" goto doneSetArgs
set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
shift
goto setArgs
:doneSetArgs

call "%EXECUTABLE%" start %CMD_LINE_ARGS%

:end

This is most likely a duplicate question, but neither of the other answers that I found with a quick lookup contained the basic technique on how to find out the root cause for yourself, thus I'm answering here: 这很可能是一个重复的问题,但我用快速查找找到的其他答案都没有包含如何找出自己的根本原因的基本技术,因此我在这里回答:

When the command line that startup.bat starts immediately disappears, just use catalina.bat run , which will start tomcat in the same command line that you're currently running (of course, this only works from command line, you can't doubleclick any more). startup.bat启动的命令行立即消失时,只需使用catalina.bat run ,它将在你当前运行的同一命令行中启动tomcat(当然,这只能在命令行中运行,你不能双击更多)。 The error message that otherwise would be shown in the (immediately disappearing) newly opened command line window, will stay visible in your current command line. 否则将在(立即消失)新打开的命令行窗口中显示的错误消息将在您当前的命令行中保持可见。

Most likely, the same content is also found in logs/catalina.out and you should check that file as well. 最有可能的是,在logs/catalina.out也可以找到相同的内容,您也应该检查该文件。

For me it was because there is a space in Program Files between Program and Files and it couldn't recognize the path.对我来说,这是因为 Program 和 Files 之间的 Program Files 中有一个空格,它无法识别路径。 I changed the path of my project and moved it under Documents and it worked.我更改了我的项目的路径并将其移动到文档下并且它起作用了。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Glassfish 服务器未启动。 空点异常 - Glassfish server does not start. NullPointeException Spring 启动 Tomcat 无法启动。 初始化并停止 - Spring Boot Tomcat can't start. Initializes and is stopped 配置为侦听端口 8080 的 Tomcat 连接器无法启动。 端口可能已在使用中或连接器可能配置错误 - The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured Spring 启动 2.2 并嵌入 tomcat 8.5 不启动。 disableRegistry 不存在 - Spring boot 2.2 with embeded tomcat 8.5 do not start. disableRegistry did not exist https 后的 Spring 启动:配置为侦听端口 8444 的 Tomcat 连接器启动失败。 - Spring boot after https: The Tomcat connector configured to listen on port 8444 failed to start. Tomcat无法启动 - Tomcat does not start 嵌入式Tomcat无法启动 - Embedded Tomcat does not start 获取java.lang.VerifyError:类waffle.apache.MixedAuthenticator在Eclipse中启动tomcat 8服务器时会覆盖最终方法start。()V - Getting java.lang.VerifyError: class waffle.apache.MixedAuthenticator overrides final method start.()V on starting tomcat 8 server in eclipse 错误:本地主机上的服务器 Tomcat v7.0 服务器无法启动。 在部署 Spring-MVC 项目期间 - error: Server Tomcat v7.0 Server at localhost failed to start. during deployment of Spring-MVC project Eclipse Tomcat 服务器无法启动 - Eclipse Tomcat server does not start
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM