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

我们两清 提交于 2019-12-23 16:02:56

 

Eclipse启动Tomcat错误:

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、8009端口已经被占用,通过以下方法,找出被哪个进程占用:

在命令提示符下,输入netstat -aon | findstr 8080

获得该端口被PID为848的进程占用

输入tasklist |findstr 848:

可以获得当前端口被javaw.exe占用

继续输入taskkill -F -IM javaw.exe或taskkill /pid 848 /F

结束该进程

再次在eclipse中启动tomcat正常

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!