首页 > 其他 > 详细

tomcat 端口被占用解决办法

时间:2015-12-16 19:27:41      阅读:147      评论:0      收藏:0      [点我收藏+]

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正常

tomcat 端口被占用解决办法

原文:http://www.cnblogs.com/allways/p/5051917.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!