adb 连接之 error: protocol fault (couldn‘t read status): Connection reset by peer

一、问题现象:
dos中使用adb连接模拟器时,一直连接不上测试,提示:adb.exe: failed to check server version: protocol fault (couldn’t read status): Connection reset by peer

在这里插入图片描述

二、问题原因:
大多数情况是5037端口被占用。5037为adb默认端口。
解决办法:
查看哪个程序占用了adb端口,结束这个程序,然后重启adb就好了。

三、解决问题:

1:使用命令:netstat -aon|findstr “5037” 找到占用5037端口的进程PID。

在这里插入图片描述

2:使用命令:tasklist|findstr “30312” 通过PID找出进程。

在这里插入图片描述

3:使用命令:taskkill /pid 30312 /f 通过PID关闭进程。

在这里插入图片描述

4:使用命令:adb start-server 启动adb就行了

在这里插入图片描述

你可能感兴趣的:(移动端测试,adb)