ADB server didn't ACK * failed to start daemon * 解决方法

ADB server didn't ACK * failed to start daemon * 解决方法_第1张图片

1、进入adb.exe 所在的文件夹

cd D:\adt-bundle-windows-x86-20130219\sdk\platform-tools
adb nodaemon server

提示 cannot bind “tcp: 5037”

2、找到占用5037端口的进程id

netstat -ano | findstr "5037"

提示:TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 6196
即为pid=6196的进程占用了该端口。

3、结束占用端口的进程

taskkill /f /pid 6196

完成。

你可能感兴趣的:(adb,failed)