windows 查看某个端口是否被占用,被谁占用以及杀死占用的进程


查看是否被占用
C:\Windows\system32>netstat -ano | findstr "443"
  TCP    0.0.0.0:443            0.0.0.0:0              LISTENING       5156
  TCP    192.168.1.11:3370      40.90.189.152:443      ESTABLISHED     5124
  TCP    192.168.1.11:4104      23.45.112.10:443       ESTABLISHED     20712
  TCP    192.168.1.11:4106      117.18.232.200:443     ESTABLISHED     20712
  TCP    [::]:443               [::]:0                 LISTENING       5156
  
查看被谁占用
C:\Windows\system32>tasklist | findstr "5156"
VisualSVNServer.exe           5156 Services                   0      6,360 K

杀死进程,如果提示没有权限,需要以管理员身份运行命令提示符。还可以打开任务管理器=>详细信息=>查找pid=>右击结束任务
C:\Windows\system32>taskkill -f -pid 5156
成功: 已终止 PID 为 5156 的进程。


 

上一篇:Windows中Address already in use: JVM_Bind 端口被占用的解决办法


下一篇:curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused