解决tomcat占用8080端口问题图文教程

  1. 在dos下,输入  netstat   -ano|findstr  8080 

    //说明:查看占用8080端口的进程

    显示占用端口的进程

  2. taskkill  /pid  6856  /f 

    //说明,运行windows自带taskkill命令,将上面显示的进程号,结束掉。

原文地址:https://www.cnblogs.com/21heshang/p/5717135.html