Tomcat v7.0 服务器设置端口 8086 和 8009

发布于 2024-12-21 11:14:28 字数 258 浏览 0 评论 0原文

我是java编程新手。我使用struts 编写了一个小型Web 程序。我已经安装了 apche tomcat 7 服务器。我将此服务器配置到我的项目中。当我运行此程序时,Tomcat 服务器显示错误。错误是

在本地主机上启动 tomcat v7.0 服务器遇到问题

本地主机上的 Tomcat v7.0 服务器所需的几个端口(8086、8009)已在使用中。服务器可能已经在另一个进程中运行,或者系统进程可能正在使用该端口。要启动此服务器,您需要停止其他进程或更改端口号

I am new in java programming. I have write a small web program using struts. I ve already install apche tomcat 7 server. I configure this server to my project. Tomcat server error showing When I run this program. The error is

Starting tomcat v7.0 server at localhost encountered a problem

Several ports (8086, 8009) required by Tomcat v7.0 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

绻影浮沉 2024-12-28 11:14:28

需要找出哪个进程正在该端口上运行,如果不需要,您可以杀死它们

,或者您可以更改 tomcat 的配置来启动另一个端口上的 Tomcat 实例

为此,您需要编辑位于 TOMCAT_DIR/conf/server.xml 文件

You need to find out which process are running over that port and if it is not needed you can kill them

or you can change your tomcat's configuration to start the Tomcat instance on another port

for this you need to edit your server.xml file located at TOMCAT_DIR/conf/

dawn曙光 2024-12-28 11:14:28

如何解决这个问题 Tomcat v7.0 服务器所需的 8080 端口已在使用中。服务器可能已经在另一个进程中运行,或者系统进程可能正在使用该端口。要启动此服务器,您需要停止其他进程或更改端口号。

how to solve this Port 8080 required by Tomcat v7.0 Server at localhost is already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).

只是一片海 2024-12-28 11:14:28

您可以更改您的tomcat端口

You can change your tomcat ports

榆西 2024-12-28 11:14:28

您可以在 {TOMCAT_HOME}\conf\server.xml 中更改端口详细信息

you can change the port details in {TOMCAT_HOME}\conf\server.xml

厌倦 2024-12-28 11:14:28

您已经运行了另一个服务器实例。您可以通过在网络浏览器中访问 http://localhost:8080 来确认这一点,并检查是否收到特定的 404 错误页面和 Tomcat 默认主页。两者都是 Tomcat 运行良好的同等有效证据。

您需要将其关闭。

打开任务管理器并终止所有 java 和/或 javaw 进程。
现在打开您的项目并运行您的应用程序。
打开窗口->首选项->服务器

如果未安装 Tomcat,请执行这些步骤,否则跳过步骤

  1. 在“服务器”区域中,右键单击 ->新->服务器。
  2. 您将在“Apache”文件夹下找到 Tomcat vx.x Server,如图所示
    以下。
  3. 选择“Tomcat v6.0 服务器”并单击“下一步”。
  4. 选择包含 bin 文件夹的 Tomcat 根文件夹,然后单击“下一步”。
  5. 没有要配置的资源,因此单击“完成”。
  6. 配置的 Apache Tomcat 服务器将显示在
    “服务器”视图。

如果 Tomcat 已安装,请执行以下步骤:

  1. 在“服务器”区域,右键单击 ->添加和删​​除...
  2. 在此之下,需要配置项目,从以下位置添加项目
    将“可用:”框更改为“已配置:”
  3. 单击完成以运行服务器。

You've another instance of Server already running. You can confirm this by going to http://localhost:8080 in your webbrowser and check if you get the specific 404 error page and Tomcat default home page. Both are equally valid evidence that Tomcat runs fine.

You need to shutdown it.

Open the task manager and kill all java and/or javaw processes.
Now open your project and run your application.
Open Window -> Preferences -> Server

If Tomcat is not installed go through these steps otherwise skip step

  1. In “Servers” area, right click -> New -> Server.
  2. You will find Tomcat vx.x Server under “Apache” folder as shown
    below.
  3. Select “Tomcat v6.0 Server” and click Next.
  4. Select the Tomcat Root folder which has bin folder and click Next.
  5. There are no resources to be configured and hence click Finish.
  6. The configured Apache Tomcat Server will be displayed in the
    “Servers” view.

If Tomcat is already installed then go through these steps:

  1. In "Server" area, right click -> Add and Remove...
  2. Under this, the project need to be configured add the project from
    "Available:" box to "Configured:"
  3. Click finish to run the server.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文