关闭windows中被占用的端口,比如我们常见的8080端口被占用了
1、查找端口的PID
netstat -aon|findstr "8080"
如图
PID为3888
2、关闭PID进程
结束进程
关闭windows中被占用的端口,比如我们常见的8080端口被占用了
1、查找端口的PID
netstat -aon|findstr "8080"
如图
PID为3888
2、关闭PID进程
结束进程
转载于:https://www.cnblogs.com/ruo-/p/4124070.html