ADB server didn't ACK 解决方法

时间:2021-03-06 08:35:25

在安卓开发的过程中 连接真机的时候 连接不上 提示

The connection to adb is down, and a severe error has occured.
[2015-01-22 21:38:42 - 品] You must restart adb and Eclipse.
[2015-01-22 21:38:42 - 品] Please ensure that adb is correctly located at 'G:\Java\adt-bundle-windows-x86-20130917\sdk\platform-tools\adb.exe' and can be executed.

提示的解决方法就是重启adb和eclipse

但是重启是不能解决问题的  查询了解决方案,是软件可能占用了android手机跟eclipse连接启动adb的端口,比如91手机助手,360手机助手, 豌豆荚等(我的就是360助手占用)

解决方法如下

1、

打开 cmd 输入netstat -ano | findstr "5037"

ADB server didn't ACK 解决方法

显示几条

找到 5037  (第一行)查看它后面的那串数字  我这里即2500

2、 接着输入 tasklist /fi "pid eq 2500"

ADB server didn't ACK 解决方法

就可以看到占用adb端口的进程了

3、打开任务管理器 关闭对应的进程即可

ADB server didn't ACK 解决方法