zoukankan      html  css  js  c++  java
  • servers运行失败:Tomcat Server are already in use (转)

    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 Settingsyangling.ASIAINFO>netstat -aon|findstr "8005"

      TCP    127.0.0.1:8005         0.0.0.0:0              LISTENING       5176

    C:Documents and Settingsyangling.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

  • 相关阅读:
    memcached 在windows下安装及启动
    细说 ASP.NET Cache 及其高级用法
    asp.net MVC helper 和自定义函数@functions小结
    log4net 总结
    紧跟时代步伐,让我们拥抱MVC 3
    关于node-sass安装失败的解决办法
    table自适应
    获取select选中的值
    省市三级联动
    git bush 代码提交
  • 原文地址:https://www.cnblogs.com/szxiaofei14/p/4650300.html
Copyright © 2011-2022 走看看