问题与处理策略
问题描述

adb server version (32) doesn't match this client (41): killing...
could not read ok from ADB Server
* failed to start daemon
adb.exe: cannot connect to daemon
# 翻译ADB 服务器版本(32)与客户端版本(41)不匹配:正在终止...
无法从 ADB 服务器读取 OK 响应
* 无法启动守护进程
adb.exe: 无法连接到守护进程
问题原因
- 这个错误通常是用于 ADB 所使用的端口被占用导致 ADB 无法正常运行
处理策略
-
netstat -ano | findstr 5037
:查找占用 5037 端口的进程 -
tasklist | findstr 【进程号】
:查看该进程号对应的进程 -
taskkill -PID 【进程号】 -F
:杀死该进程
