ADB server didn t ACK解決方法

2021-06-18 19:54:42 字數 384 閱讀 1040

1

首先通過cmd啟動adb服務。這個時候會提示啟動失敗。

>adb start-server

服務啟動失敗的原因有很多,但一般是埠繫結失敗。我們來檢視一下埠繫結資訊。如圖所示,真的是埠繫結出了問題。

>adb nodaemon server

3

我們來看看哪個服務占用了這個埠。這裡面有2個程序占用了這個埠。

>netstat -ano | findstr "5037"

4

我們進入任務管理器,關閉這個程序。其中824程序是我的qq,我已經關閉了。

5

再次啟動服務,啟動成功。

6

關閉eclipse,重啟,再次連線模擬器。

解決ADB server didn t ACK問題

之前執行eclipse執行android應用都沒問題,今天突然出問題了,控制台報錯 the connection to adb is down,and a severe error has occured.you must restart adb and eclipse.please ensure ...

解決ADB server didn t ACK問題

之前執行eclipse執行android應用都沒問題,今天突然出問題了,控制台報錯 the connection to adb is down,and a severe error has occured.you must restart adb and eclipse.please ensure ...

解決ADB server didn t ACK問題

執行eclipse執行android應用,控制台報錯 the connection to adb is down,and a severe error has occured.you must restart adb and eclipse.please ensure that adb is cor...