查看 8030 端口被占用情况
netstat -ano|findstr 8330
C:\Users\anwanlin>netstat -ano|findstr 8330
TCP 0.0.0.0:8330 0.0.0.0:0 LISTENING 20360
TCP [::]:8330 [::]:0 LISTENING 20360
可以看到,被占用的进程 PID 为 20360,使用 taskkill /F /PID 20360
停止该进程
C:\Users\anwanlin>taskkill /F /PID 20360
成功: 已终止 PID 为 20360的进程。