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

Eclipse启动Tomcat错误(其他类似)

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

  输入tasklist |findstr 848:

Eclipse启动Tomcat错误(其他类似)

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

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

  结束该进程

  再次在eclipse中启动tomcat正常

相关文章:

  • 2021-09-09
  • 2021-09-28
  • 2022-12-23
  • 2021-08-20
  • 2021-04-03
  • 2021-07-23
  • 2021-11-06
  • 2021-08-13
猜你喜欢
  • 2022-12-23
  • 2021-06-29
  • 2022-02-07
  • 2021-04-28
  • 2021-11-18
  • 2021-05-13
相关资源
相似解决方案