Several ports (8080, 8009) required by Tomcat v6.0 Server at localhost are already in use. The serve

今天用eclipse调试程序,eclipse卡死,我就在任务管理器将eclipse任务结束了。结果重新打开eclipse时,启动tomcat时候一直报8080端口被占用如下错误:

Several ports (8080, 8009) required by Tomcat v6.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).  如图:

一看报错就知道8080端口被占了,去任务管理器找到“javaw.exe”,然后结束掉就好了。但是找不到这个“javaw.exe”,所以解决办法就来了。

1、在cmd命令行中输入 netstat  -ano |findstr 8080

2、然后输入:taskkill  /pid 4884 /f

其中第二个步骤中pid后面的参数是相应的端口的pid。你要问我啥是pid,我是百度的,而且我看了看还忘了pid是啥,我只能让你百度了。。。

解决问题的截图:

时间: 2024-08-15 23:04:38

Several ports (8080, 8009) required by Tomcat v6.0 Server at localhost are already in use. The serve的相关文章

Several ports (8080, 8009) required by Tomcat v6.0 Server at localhost are already in use.

遇到这个问题似然重启是个办法,但是真心好累.. 1.在dos下,输入  netstat   -ano|findstr  8080 //说明:查看占用8080端口的进程 显示占用端口的进程 2.在任务管理其中查看PID好对应的进程,自己手动关掉进程或者用下面方法: taskkill  /pid  xxxx  /f //说明,运行windows自带taskkill命令,将上面显示的进程号,结束掉. //xxxx为进程对应的PID号.

Several ports (8080, 8009) required by Tomcat v7.0 Server at localhost are already in use.

Several ports (8080, 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 o

Several ports (8080, 8009) required by Tomcat v9.0 Server at localhost are already in use.解决方案

Several ports (8080, 8009) required by Tomcat v9.0 Server at localhost are already in use. The server may already b e 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

Eclipse启动Tomcat错误:Several ports (8005,8009) required by Tomcat v6.0 Server at localhost are already

解决办法: 1.netstat -aon|findstr 8005 可查看指定端口号使用情况 2.tasklist |findstr 10452 找出占用指定进程Id的程序 3.taskkill /pid 10452 /F 结束该进程

Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use.解决办法

Several ports (8005, 8080, 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 pro

Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use.

Several ports (8005, 8080, 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 pro

Several ports (8005, 80, 8009) required by Tomcat v6.0 Server at localhost are already in use

使用Eclipse编写JSP调试的时候出现错误,错误提示是Several ports (8005, 80, 8009) required by Tomcat v6.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

Java tomcat Several ports (8005, 8080, 8009) required by Tomcat v9.0 Server at localhost

关于 下面问题是因为(8005, 8080, 8009) 被原tomcat占用了. Several ports (8005, 8080, 8009) required by Tomcat v9.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

Several ports (8005, 8080, 8009) required by Tomcat v9.0 Server at localhost

Several ports (8005, 8080, 8009) required by Tomcat v9.0 Server at localhost 问题:Tomcat服务器的端口被占用 解决: win+R 进入cmd netstat -ano 在第二列找到8080端口,对于找到该行的最后一列,记下PID号 进入任务管理器,选择服务 找到PID列中的对应进程,右键停止服务. 重启Eclipse,解决!!! 原文地址:https://www.cnblogs.com/yocichen/p/104