码迷,mamicode.com
首页 > 其他好文 > 详细

servers运行失败:Tomcat Server are already in use (转)

时间:2015-07-16 11:01:13      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

eclipse运行servers的project失败,总是提示错误:

错误信息:

Several ports (8005,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).

 

查看端口是否被占用:
C:\Documents and Settings\yangling.ASIAINFO>netstat -aon|findstr "8005"

  TCP    127.0.0.1:8005         0.0.0.0:0              LISTENING       5176

 

C:\Documents and Settings\yangling.ASIAINFO>tasklist|findstr "5176"

javaw.exe                   5176 Console                 0    112,648 K

停掉javaw.exe即可启动;

 

从网上搜了一下通用解决方法,觉得这位大虾总结的很好:

1,独立运行的Tomcat没有关闭.
自安装的tomcat程序设置开机自动运行,或者在之前运行过,先关闭ecplipse或jbuilder,在任务管理器中找到Tomcat的进程,将其 kill掉,即可.有时候Tomcat非法关闭时,在进程中,仍然存在,仍然占用8080端口.所以只要将其进程杀掉.就可以解决.

2,安装了其他的软件占用了Tomcat的端口.
用可以查看端口的工具查看一下,或者,直接改掉tomcat的默认端口.即可.

 

转自 http://blog.sina.com.cn/s/blog_573a052b0100if25.html

servers运行失败:Tomcat Server are already in use (转)

标签:

原文地址:http://www.cnblogs.com/szxiaofei14/p/4650300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!