windows 关闭占用端口的进程 使用cmd命令查看端口号占用情况 # 通过查看端口得到进程号 netstat -ano | findstr 端口号 # 关闭进程 taskkill -PID 进程号 -F