1,$ netstat -anon|findstr "8000" 查看端口被占用的id, 8000为端口,如下占用id为 16492
TCP 127.0.0.1:8000 0.0.0.0:0 LISTENING 16492
2,$ tasklist|findstr "16492" 查看占用程序名,如下占用程序为python.exe
python.exe 16492 Console 1 47,864 K
3, $ taskkill /f /t /im python.exe 杀掉程序
通过如上操作便可杀死端口占用程序,释放端口资源