ADB server didn't Acknowledge [duplicate]

2019-01-13 00:20发布

This question already has an answer here:

I could not run the android application never on my laptop. Eclipse gives same error constantly, that is "ADB server didn't Acknowledge"

I've tried everything, restart adb from ddms view, from command line (kill-server, start-server), from task manager and restart eclipse. When I manage to start adb server and re-open eclipse, as soon as I run the android application, same error comes to console; ADB server didn't ack.

Could you give an idea except restarting adb

9条回答
Melony?
2楼-- · 2019-01-13 01:07

in my case i use the command line taskkill /f /t /im bas_deamon.exe (because adb.exe was not started) and adb server is started successfully

查看更多
倾城 Initia
3楼-- · 2019-01-13 01:12

In my pc, i use the command line taskkill /f /t /im wandoujia_daemon.exe (because adb.exe or bas_daemon.exe is not running in my task manager) And... the adb server is started succesfully

查看更多
干净又极端
4楼-- · 2019-01-13 01:19

Killing the process adb.exe in the TASK MANAGER (to open task manager CTRL+Shift+Esc) solves it in my case. After killing it run adb start-server or adb devices and you should be fine.

enter image description here


Incase if that doesn't work

We can solve this issue so easily.

  1. Open command prompt, cd <platform-tools directory>
  2. Run command adb kill-server
  3. Open Windows Task manager and check whether adb is still running. If it is, just kill adb.exe
  4. Run command adb start-server in command prompt

enter image description here


A way bit difficult approach

Command Prompt (cmd.exe)

netstat -aon|findstr 5037

find process id of 0.0.0.0 enter image description here

make sure it's adb.exe

tasklist|findstr 1980

enter image description here

kill this process

taskkill /f /t /im adb.exe

enter image description here

get ADB back to normal

enter image description here

for more details check it from here

查看更多
登录 后发表回答