解决本地端口占用问题

编程

Description:

The Tomcat connector configured to listen on port 9090 failed to start. The port may already be in use or the connector may be misconfigured.

Action:

Verify the connector"s configuration, identify and stop any process that"s listening on port 8080, or configure this application to listen on another port.

解决方法:

  1. netstat -ano|findstr 9090

  2. taskkill /f /t /im 16500
  3. taskkill /f /t /im 11720

kill处于ESTABLISHED状态的进程

以上是 解决本地端口占用问题 的全部内容, 来源链接: utcz.com/z/512673.html

回到顶部