This question already has an answer here:
- Adb won't start 21 answers
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
Kill ADB from command prompt. Kill eclipse also from command prompt. Start adb server from there using [adb start-server] And start again.
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.
For Mac users, what worked for me was:
Look for typos in the ~/.android/adb_usb.ini file. This problem can be caused if that file gets messed up.
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 killingadb.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
asError
.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
andbas_helper
were using this address both of which corresponds to MOBOROBOPlease kill adb by command:
then, re-start it with command:
It work very fine for me :)