在windows下关闭端口
转载注明原文地址:http://thetopofqingshan.iteye.com/blog/1749501
?
端口一般都被程序所占用, 所以只要找到占用该端口的程序, 再关闭相应程序即可
例如:关闭8080端口
第一步:找到占用该端口的程序
netstat -aon|findstr ":8080"
? TCP ? ?0.0.0.0:8080 ? ? ? ? ? 0.0.0.0:0 ? ? ? ? ? ? ?LISTENING ? ? ? 6192
? TCP ? ?[::]:8080 ? ? ? ? ? ? ?[::]:0 ? ? ? ? ? ? ? ? LISTENING ? ? ? 6192
第二步:关闭相应程序
taskkill /f /pid?6192
最后再使用netstat -aon|findstr ":8080"查找一下
更新:
1.bug_fixed: "taskill /f /pid 6192">>taskkill /f /pid 6192
?