标签:style color os 使用 ar strong sp art on
1 现象
adb server is out of date. killing...
ADB server didn‘t ACK
* failed to start daemon *
error: unknown host service
2 解决方法
使用adb时,若出上面的错,使用adb kill-server是没有用的,因为此时是其他进程的监听了端
口,而不是adb。
我用cmd+命令管理器解决:
输入netstat -ano | findstr "5037"
找到下列进程
TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 4236
TCP 127.0.0.1:5037 127.0.0.1:49422 ESTABLISHED 4236
TCP 127.0.0.1:49422 127.0.0.1:5037 ESTABLISHED 3840
此时把4236这个进程结束就行了。
TASKLIST | findstr "4236"
标签:style color os 使用 ar strong sp art on
原文地址:http://blog.csdn.net/chaihuasong/article/details/39590345