cmd視窗中:C:\>netstat -aon|findstr "8080"TCP 127.0.0.1:9050 0.0.0.0:0 LISTENING 2016 //本機埠被進程號為2016的進程占用。C:\>tasklist|findstr "2016"demo.exe 2016 Consol ...
cmd視窗中:
C:\>netstat -aon|findstr "8080"
TCP 127.0.0.1:9050 0.0.0.0:0 LISTENING 2016 //本機埠被進程號為2016的進程占用。
C:\>tasklist|findstr "2016"
demo.exe 2016 Console 0 16,064 K //demo應用占用了該埠。
C:\>taskkill /f /pid 9050
成功: 已終止 PID 為 9050 的進程。 //結束PID為9050的進程。
taskkill /f /im java.exe //結束進程名為java的進程