博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
adb devices报错(adb devicesadb server is out of date. killing...)解决
阅读量:5780 次
发布时间:2019-06-18

本文共 630 字,大约阅读时间需要 2 分钟。

1.问题描述:

命令窗口输入adb devices时出现以下报错

adb devicesadb server is out of date.  killing...

ADB server didn't ACK* failed to start daemon *error: unknown host service

2.问题原因:

adb端口(5037)被占用

3.解决方法:

  • adb nodaemon server:查看端口是否被占用 
  • netstat -ano | findstr "5037"  :查找占用端口的进程(出现类似下面的内容要执行该命令查看哪个进程占用了端口tasklist | findstr "131088"

      TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       131088

     TCP    127.0.0.1:5037         127.0.0.1:59163        TIME_WAIT       0

  • tasklist | findstr "131088"

     PPADBserver                        131088 Console                    1     3,071 K   (发现是PPADBserver占用了端口,就需要杀掉该进程)

  • taskkill /f /pid 131088   (此步骤也可以在任务管理器进程标签页下直接找到该进程结束即可)
  • adb devices     (此时即可执行成功)

转载于:https://www.cnblogs.com/musr/p/7411924.html

你可能感兴趣的文章
CentOS7下安装python-pip
查看>>
陀螺仪主要性能指标
查看>>
gen already exists but is not a source folder. Convert to a source folder or rename it 的解决办法...
查看>>
20个Linux服务器性能调优技巧
查看>>
填坑记:Uncaught RangeError: Maximum call stack size exceeded
查看>>
SpringCloud之消息总线(Spring Cloud Bus)(八)
查看>>
实时编辑
查看>>
KVO原理分析及使用进阶
查看>>
【348天】每日项目总结系列086(2018.01.19)
查看>>
【294天】我爱刷题系列053(2017.11.26)
查看>>
Microsoft发布了Azure Bot Service和LUIS的GA版
查看>>
Google发布Puppeteer 1.0
查看>>
.NET开源现状
查看>>
可替换元素和非可替换元素
查看>>
2016/08/25 The Secret Assumption of Agile
查看>>
(Portal 开发读书笔记)Portlet间交互-PortletSession
查看>>
搭建vsftpd服务器,使用匿名账户登入
查看>>
JAVA中循环删除list中元素的方法总结
查看>>
Java虚拟机管理的内存运行时数据区域解释
查看>>
人人都会深度学习之Tensorflow基础快速入门
查看>>