1.列出所有端口的情况
$ netstat -ano
2.查看被占用端口对应的PID(例如:查看8081端口对应的PID)
$ netstat -aon|findstr 8081
3.杀进程(例如:杀掉PID为8643的进程)
$ taskkill /pid 8643 -f
愿你的生活只有诗和远方