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条回答
我命由我不由天
2楼-- · 2019-01-13 00:56

Kill ADB from command prompt. Kill eclipse also from command prompt. Start adb server from there using [adb start-server] And start again.

查看更多
Root(大扎)
3楼-- · 2019-01-13 00:58

I believed you've checked the port number, and restart adb. But have you install proper android driver on your computer. Some universal android driver may not work on your computer, you'd better installed the driver provided by your mobile manufacturer, if you can't find the driver on manufacturer's website, consider download its software suit, it may include the driver.

查看更多
4楼-- · 2019-01-13 01:00

For Mac users, what worked for me was:

  1. Open Activity Monitor (equivalent to Windows task manager)
  2. Kill the adb task
  3. Restart adb
查看更多
乱世女痞
5楼-- · 2019-01-13 01:00

Look for typos in the ~/.android/adb_usb.ini file. This problem can be caused if that file gets messed up.

查看更多
Lonely孤独者°
6楼-- · 2019-01-13 01:03

In addition to @maveňツ solution.

Actually we have to kill the process using this address 0.0.0.0:0, that's why for most of the people killing adb.exe from task manager was working (In my case I was not able to see it even Task Manager).

Following the @maveňツ steps I find out that some other process was using this address. I went ahead to kill it, it gave me ACCESS DENIED as Error.

So using the tasklist|findstr **** i find out the name of the process and killed it from task manager.

There after it started working.

In my case bas_daemon and bas_helper were using this address both of which corresponds to MOBOROBO

查看更多
戒情不戒烟
7楼-- · 2019-01-13 01:06

Please kill adb by command:

taskkill /f /im "adb.exe"

then, re-start it with command:

adb start-server

It work very fine for me :)

查看更多
登录 后发表回答