window 下查找端口进程。

  例如查找80端口进程:
1 查找根据端口查找pid: netstat -ano|findstr "80"
显示: TCP    0.0.0.0:80             0.0.0.0:0              LISTENING       3640
2 根据pid查找进程:tasklist|findstr "3640"
显示:httpd.exe                   3640 Console                 0      5,108 K

如果要杀掉当前进程 使用 taskkill -pid 3640 /f

你可能感兴趣的:(window 下查找端口进程。)