美文网首页
android端口被占用

android端口被占用

作者: 逐鹿不顾兔208 | 来源:发表于2017-12-01 09:16 被阅读0次

android出现该段错误:

Unable to create Debug Bridge: Unable to start adb server: error: could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037: 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 (10048)

could not read ok from ADB Server

* failed to start daemon *

error: cannot connect to daemon

'D:\android_soft\Sdk\platform-tools\adb.exe start-server' failed -- run manually if necessary

解决方案:在管理器中杀死adb.exe即可。

学到的东西,在cmd中查看是哪个端口被占用,命令如下 

1.进入adb.exe 所在目录  (进入D盘,直接 “D:”)

2. netstat -aon|findstr "5037"  , 查看端口被占用

3.tasklist|findstr "5456" ,查看被占用的端口是哪个应用 

相关文章

网友评论

      本文标题:android端口被占用

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