12

我正在使用 Windows 7 操作系统。我刚刚安装了 jaspersoft 服务器,它安装了 Apache Tomcat 和 mysql 作为一个捆绑包。

我去 http://localhost:8080那里有一条消息说网页不可用。

我是一个初学者,我想知道Tomcat是否首先安装在我的计算机上。你能告诉我我该怎么做吗?(我还想知道它是否必须启动以及它安装在哪个端口上。)

更新

这是我做的事情。我现在真的很困惑。我找到了tomcat服务器的位置。我找到了 server.xml 文件。server.xml 文件中的端口被列为 8005。我还找到了我运行的 start.bat。我现在看到这http://localhost:8080行得通,但http://localhost:8005没有。你知道为什么吗??端口 8005 应该可以工作,因为这就是 server.xml 中列出的内容

4

6 回答 6

7

如果安装了tomcat,您可以签入windows服务,它将在windows服务中列出。

要检查 Windows 机器上安装的服务的 Windows 服务列表,请使用

  WINDOWS KEY + R   and type services.msc

在那里,您可以找到与 Jasperreport 服务器相关的所有服务,例如 Tomcat 和 MySQL,名称以 Jasperreport 服务器 Tomcat 和 MySQL 开头,前提是这些服务已安装并且需要通过选择选项来启动。然后您可以使用此链接通过浏览器访问它:-

   http://localhost:8080

tomcat 的默认端口是 8080。

于 2013-10-11T09:38:45.950 回答
7

The port 8005 is used as service port. You can send a shutdown command (a configurable password) to that port. It will not "speak" HTTP, so you cannot use your browser to connect.

The default port for delivering web-content is 8080.

But there may be other applications listen to that port. So your tomcat may not start, if the port is not available.

You asked "How do you know, if tomcat server is installed on your PC?". The answer to that question is: You can't

You can't determine, if it is installed, because it may be only extracted from a ZIP archive or packaged within another application (Like JBoss AS (I think)).

于 2013-10-10T18:19:07.973 回答
2

为了要做

     http://localhost:8080

工作,必须先启动tomcat。您可以检查 conf 文件夹中的 server.xml 文件以获取端口信息。你可以搜索你的机器上是否安装了tomcat。只需开始,然后键入 tomcat。如果已安装,它将为您提供安装目录。然后您可以选择该路径并从命令提示符运行它。例如,如果 tomcat 安装在 C:\Programfile\tomcat 中。您需要在命令提示符下设置此路径,进入 bin 文件夹并启动。示例:C:\Programfile\tomcat\bin\startup。否则,您也可以通过直接转到路径并运行启动批处理文件来运行它。

于 2013-10-10T17:41:53.770 回答
2

如果是 Windows(在我的情况下是 XP):-

  1. 检查tomcat的安装目录。
  2. 打开其中名为 \conf 的目录。
  3. 然后搜索文件 server.xml
  4. 打开该文件并检查 HTTP 的连接器端口是什么,您会发现诸如 8009,8080 之类的东西。
  5. 假设它找到了 8009,使用 HTTP 协议在您的网络浏览器中将该端口用作“/localhost:8009/”。希望这会奏效!
于 2013-10-10T17:51:03.547 回答
2

For linux ubuntu 18.04:

Go to terminal and command:$ sudo systemctl status tomcat
于 2018-10-08T09:42:30.073 回答
0

打开您的 Windows 搜索栏,然后搜索关键字Tomcat。如果找到了快捷方式文件,您可以通过右键单击快捷方式文件并选择属性来打开快捷方式的源文件位置。

于 2016-12-15T02:04:49.237 回答