`
zhuyoulong
  • 浏览: 19934 次
  • 性别: Icon_minigender_1
  • 来自: 福州
社区版块
存档分类
最新评论

'ADB server didn't ACK'的解决办法

阅读更多


1:今天调试android的时候发现一个诡异的问题

[html] view plaincopy

    C:\Users\xxxx>adb start-server 
    adb server is out of date.  killing... 
    ADB server didn't ACK 
    * failed to start daemon * 


adb 不管执行 shell devices 还是logcat 都会报错

[html] view plaincopy

    adb server is out of date.  killing... 

究其源就是adb server没启动

到stackoverflow上查了一下 经过分析整理如下:

[html] view plaincopy

    C:\Users\xxxx>adb nodaemon server 
    cannot bind 'tcp:5037' 

原来adb server 端口绑定失败

继续查看到底是哪个端口给占用了
[html] view plaincopy

    C:\Users\xxxxxx>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 

打开任务管理器kill掉4236 这个进程。ok


至此问题解决了
-------------------------------------------------
以下是我的操作记录:


D:\TDDOWNLOAD\adt-bundle-windows-x86-20130514\sdk\platform-tools>adb kill-serve

* server not running *

D:\TDDOWNLOAD\adt-bundle-windows-x86-20130514\sdk\platform-tools>adb start-serv
r
adb server is out of date.  killing...
ADB server didn't ACK
* failed to start daemon *

D:\TDDOWNLOAD\adt-bundle-windows-x86-20130514\sdk\platform-tools>adb nodaemon s
rver
cannot bind 'tcp:5037'

D:\TDDOWNLOAD\adt-bundle-windows-x86-20130514\sdk\platform-tools>netstat -ano |
findstr "5037"
  TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       2592
  TCP    127.0.0.1:5037         127.0.0.1:2051         TIME_WAIT       0
  TCP    127.0.0.1:5037         127.0.0.1:2052         TIME_WAIT       0

进入任务管理器杀进程
再执行确认5037进程是否存在
D:\TDDOWNLOAD\adt-bundle-windows-x86-20130514\sdk\platform-tools>netstat -ano |
findstr "5037"
分享到:
评论
1 楼 zhuyoulong 2013-05-21  
首先是豌豆荚,尝试关闭豌豆荚,重启eclipse后尝试run as android application....

相关推荐

Global site tag (gtag.js) - Google Analytics