Adb won't start

2019-01-01 13:56发布

Running Vista, tried starting adb from shell as admin get daemon not running starting it now

ADB server didn't ACK
* failed to start daemon *

Any help for this?

标签: android adb
21条回答
何处买醉
2楼-- · 2019-01-01 14:31

If you are getting the error cannot bind 'tcp:5037' and you are using any Linux distribution such as Ubuntu,

Kill old ADB process:

fuser -n tcp -k 5037

This will kill the adb process at port 5037 and then,

Start ADB:

adb start-server
查看更多
路过你的时光
3楼-- · 2019-01-01 14:32

I'm facing this issue with Genymotion, so I've replaced it's adb with my current adb. For reference:

cd $GENYMOTION_HOME\tools
mv adb adb-old
ln -s $ANDROID_SDK\platform-tools\adb adb
查看更多
与君花间醉酒
4楼-- · 2019-01-01 14:33

Open Command Navigate your adb.exe file where is located Reach into the file on command adb kill-server adb start-server

查看更多
登录 后发表回答