1. 找到占用该端口的pid
netstat -ano|findstr "端口号"
2. 强制关闭该占用该端口的进程
// 关闭 taskkill -pid 刚才查的pid // 强制关闭 taskkill -pid 刚才查的pid -f
-----------------------------