美文网首页
android stuido adb 启动失败

android stuido adb 启动失败

作者: Rruop旋转 | 来源:发表于2020-03-26 22:58 被阅读0次

Unable to start adb server: error: protocol fault (couldn't read status): Connection reset by peer

问题原因:

   大部分是由于 5037端口被占用 
1111.png

处理方法 :

  1.使用命令:netstat -aon|findstr "5037"  找到占用5037端口的进程PID。
222.png
  2.使用命令:tasklist|findstr "4356"  通过PID找出进程。

  3.打开任务管理器,找出进程,杀死。

  4.重新启动adb  adb start-service;

相关文章

网友评论

      本文标题:android stuido adb 启动失败

      本文链接:https://www.haomeiwen.com/subject/ynvfdctx.html