现在的位置: 首页 > 综合 > 正文

The connection to adb is down, and a severe error has occured.(解决adb server didn’t ACK问题)

2018年05月19日 ⁄ 综合 ⁄ 共 898字 ⁄ 字号 评论关闭

遇到问题描述:

启动android模拟器时.有时会报如下错误:
The connection to adb is down, and a severe error has occured. 
You must restart adb and Eclipse. 
Please ensure that adb is correctly located at 'D:\android-2.2-windows\tools\adb.exe' and can be executed.

在命令行下运行 adb start-server 

errors: 

* daemon not running. starting it now * 
ADB server didn't ACK 
* failed to start daemon * 

已经确认adb.exe的路径没有问题,重启了几次模拟器和eclipse还是不行,上网查了下资料,

有很多种情况,所以也有很多解决方法:

1、任务管理器 kill掉adb 或者重启adb server

2、查看任务管理器没有adb,猜测是某个程序占用了adb端口

5037为adb默认端口 查看该端口情况如下:

查看:cmd —— netstat -aon|findstr "5037"

 TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       5408
 TCP    127.0.0.1:5037         127.0.0.1:49542        ESTABLISHED     5408

发现5408占用了 5037端口,继续查看5408的task:

查看: tasklist|findstr "5408"

tadb.exe                      5408 Console                    1      2,980 K

发现是tadb.exe占用,直接在任务管理器里面kill掉或

taskkill /f /im tadb.exe

Tip:1)、tasklist 可以找到任务管理器所有进程

          2)、taskkilll /f /im 程序名1.exe /f /im 程序名2.exe .... 可以kill掉多个程序

3、重新开启adb

adb kill-server 
adb start-server

抱歉!评论已关闭.