windows查找端口占用

  1. 起因当我在一个窗口使用adb devices 时报

adb devicesadb server is out of date. killing...

ADB server didn't ACK* failed to start daemon *error: unknown host service

百度之后说是启用了多个adb的原因

  1. 使用adb nodaemon server 命令启动一个ADB服务器查找占用端口信息

: main.cpp:165 could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037: 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。

说明5037 端口被占用

  1. 使用命令netstat -ano | findstr "5037"查找占用5037端口的进程id

image-20231206215302834

得到进程号为56712 ,这时候要找到这个应用关掉即可

  1. 使用命令tasklist | findstr "56712"得到

image-20231206215404798

没有完整文件路径,查询gpt得到

  1. 使用该命令wmic process where processid="56712" get ExecutablePath既可以得到文件路径了

windows查找端口占用
https://lililib.github.io/windows查找端口占用/
作者
煨酒小童
发布于
2023年12月29日
许可协议