Windows下如何查看某个端口被谁占用
netstat -ano
netstat -aon|findstr "8080"
tasklist|findstr "9088"
taskkill /T /F /PID 9088
转载于:https://www.runoob.com/w3cnote/windows-finds-port-usage.html
netstat -ano
netstat -aon|findstr "8080"
tasklist|findstr "9088"
taskkill /T /F /PID 9088
转载于:https://www.runoob.com/w3cnote/windows-finds-port-usage.html