windows查找端口占用
- 起因当我在一个窗口使用
adb devices
时报
adb devicesadb server is out of date. killing...
ADB server didn't ACK* failed to start daemon *error: unknown host service
百度之后说是启用了多个adb的原因
- 使用
adb nodaemon server
命令启动一个ADB服务器查找占用端口信息
: main.cpp:165 could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037: 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。
说明5037 端口被占用
- 使用命令
netstat -ano | findstr "5037"
查找占用5037端口的进程id
得到进程号为56712 ,这时候要找到这个应用关掉即可
- 使用命令
tasklist | findstr "56712"
得到
没有完整文件路径,查询gpt得到
- 使用该命令
wmic process where processid="56712" get ExecutablePath
既可以得到文件路径了
windows查找端口占用
https://lililib.github.io/windows查找端口占用/