adb--could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037

问题描述:

error: could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037:

通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 (10048)

adb--could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037_第1张图片

可能原因:

端口5307被占用

解决方法:

使用cmd命令

查看被占用端口的进程

netstat -aon | findstr 5037

查看进程的具体描述

tasklist /fi "PID eq 2312

强制退出进程

taskkill /pid 2312 /f

使用taskkill命令终止进程失败,通过映像名称得知进程为360手机助手,手动关闭。

再次获取设备列表,成功。

参考文章地址:http://www.jianshu.com/p/0016e359a1ac

你可能感兴趣的:(adb--could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037)