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

adb shell出现的问题

时间:2014-08-28 19:39:45      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   io   strong   ar   art   问题   div   

问题描述:
D:\adb>adb shell
adb server is out of date. killing...
ADB server didn‘t ACK
* failed to start daemon *
error:

解决方法:

是adb server端口被占用了

你先执行adb nodaemon server ,查看adb server的端口是多少

1
2
C:\Users\xxxx>adb nodaemon server  
cannot bind ‘tcp:5037‘

再执行下netstat -ano | findstr "5037"  

1
2
3
4
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

然后执行tskill 4236即可

 

adb shell出现的问题

标签:style   color   os   io   strong   ar   art   问题   div   

原文地址:http://www.cnblogs.com/HYanqing/p/3942172.html

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