adb server is out of date. killing...问题解决

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

[html]  view plain copy
  1. C:\Users\xxxx>adb start-server  
  2. adb server is out of date.  killing...  
  3. ADB server didn't ACK  
  4. * failed to start daemon *  

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

[html]  view plain copy
  1. adb server is out of date.  killing...  
究其源就是adb server没启动

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

[html]  view plain copy
  1. C:\Users\xxxx>adb nodaemon server  
  2. cannot bind 'tcp:5037'  
原来adb server 端口绑定失败

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

[html]  view plain copy
  1. C:\Users\xxxxxx>netstat -ano | findstr "5037"  
  2.   TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       4236  
  3.   TCP    127.0.0.1:5037         127.0.0.1:49422        ESTABLISHED     4236  
  4.   TCP    127.0.0.1:49422        127.0.0.1:5037         ESTABLISHED     3840  

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

-------------------------------------------------------------------------


二、用cmd命令杀死电脑中具体的进程
输入cmd  --  > 输入tasklist 回车显示当前电脑中正在运行的所有进程信息;
比如说查到端口4236 正在被tadb.exe占用、我们可以输入命令:
taskkill /f /t /im tadb.exe 然后回车、

到此被占用的端口被成功kill掉啦;

至此问题解决了。。。。。。


你可能感兴趣的:(adb server is out of date. killing...问题解决)