常用 CMD 命令

1 查看被占用端口对应的 PID

netstat -aon|findstr "8600"

2 查看是哪个进程或者程序占用了 8600 端口

tasklist|findstr "5800"

3 杀死程序

taskkill -f -t -im javaw.exe
Table of Contents