码迷,mamicode.com
首页 > 其他好文 > 详细

react-native 运行error: protocol fault (couldn't read status): Connection reset by peer

时间:2021-01-06 12:06:11      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:原因   serve   task   进程   通过   connect   native   重启   端口   

提示:Unable to start adb server: error: 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 "5440" 通过PID找出进程。
3:调出任务管理器,找到这个进程,结束进程。
4:使用命令:adb start-server 启动adb就行了

react-native 运行error: protocol fault (couldn't read status): Connection reset by peer

标签:原因   serve   task   进程   通过   connect   native   重启   端口   

原文地址:https://www.cnblogs.com/360minitao/p/14225178.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!