当前位置:   article > 正文

关于adb出现的错误_daemon started successfully

daemon started successfully

以下是我运行adb devices所遇到的错误:

1.adb server version (32) doesn’t match this client (41);

错误提示:

adb server version (32) doesn't match this client (41); 
killing... 
* daemon started successfully *
  • 1
  • 2
  • 3

出现这个问题的原因是由于adb的版本是1.0.41,与手机客户端不匹配所导致
解决方法:搜索下载1.0.32版本的adb,将下载好的1.0.32版本的adb.exe替换掉原来SDK中platform-tools目录下的adb.exe。

参照连接:
https://blog.csdn.net/codehxy/article/details/52175186?utm_source=copy

2.adb server is out of date. killing…

错误提示:

adb server is out of date.  killing...
* daemon started successfully *
* List of devices attached
  • 1
  • 2
  • 3

解决方法:
查询adb所使用的端口

adb nodaemon server
  • 1

查找占用该端口的进程

netstat -ano | find "5037"
  • 1

之后使用 taskkill /pid 6580 /f 命令杀掉进程释放端口

taskkill /pid 6580 /f 
  • 1

之后出现 PID端口已被释 放就说明已经成功了
参照连接:
https://www.jianshu.com/p/c76255fdaf5a
连接中还指出了其他的解决方法,可根据出现的问题来使用

3.* List of devices attached

错误提示:

* daemon not running. starting it now on port 5037 *
* daemon started successfully *
* List of devices attached
  • 1
  • 2
  • 3

运行adb devices命令只出现* List of devices attached

解决方案连接:
http://www.imwen.com/post/318.html
https://blog.csdn.net/yinlin330/article/details/87863029

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/477981
推荐阅读
相关标签
  

闽ICP备14008679号