首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

【转】 adb server is out of date. killing.

2013-08-01 
【转】 adb server is out of date. killing...源地址http://blog.csdn.net/id19870510/article/details/848

【转】 adb server is out of date. killing...
源地址http://blog.csdn.net/id19870510/article/details/8489486

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    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


至此问题解决了

热点排行