码迷,mamicode.com
首页 > 数据库 > 详细

adb server is out of date. killing...

时间:2014-07-09 18:40:42      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   art   问题   

adb server is out of date. killing...

1:调试android的时候发现一个的问题

 

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 都会报错

adb server is out of date.  killing...  

究其源就是adb server没启动

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

 

C:\Users\xxxx>adb nodaemon server  

cannot bind ‘tcp:5037‘  

原来adb server 端口绑定失败

继续查看到底是哪个端口给占用了

 

C:\Users\xxxxxx>netstat -ano | findstr "5037"  

  TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       4236  

10   TCP    127.0.0.1:5037         127.0.0.1:49422        ESTABLISHED     4236  

11   TCP    127.0.0.1:49422        127.0.0.1:5037         ESTABLISHED     3840  

打开任务管理器kill4236 这个进程。Ok

至此问题解决了

adb server is out of date. killing...,布布扣,bubuko.com

adb server is out of date. killing...

标签:android   style   blog   http   art   问题   

原文地址:http://www.cnblogs.com/fly-fish/p/3831702.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!