1.如何查看占用8080端口的程序
win+r,输入cmd,再输入一下命令
netstat -aon|findstr "8080"
例如显示:
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 21008
TCP [::]:8080 [::]:0 LISTENING 21008
2.如何关闭占用8080端口的程序
taskkill /f /pid 端口号
例如:
taskkill /f /pid 21008
则显示:成功,即为关闭成功。
win+r,输入cmd,再输入一下命令
netstat -aon|findstr "8080"
例如显示:
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 21008
TCP [::]:8080 [::]:0 LISTENING 21008
taskkill /f /pid 端口号
例如:
taskkill /f /pid 21008
则显示:成功,即为关闭成功。