关于adb.exe已停止工作问题
2019-11-19 本文已影响0人
林下人水边兵
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)
error: unknown host service
could not read ok from ADB Server
* failed to start daemon *
error: cannot connect to daemon
'D:\installed\Android\sdk\platform-tools\adb.exe,start-server' failed -- run manually if necessar.
第一步
根据提示查看adb的端口号5037被谁占用
第二步
通过 netstat -aon|findstr “5037” 找出相应的pid号,
再通过任务管理器找到相应pid号的进程,然后将其结束,最后重启adb即可。
第三步
taskkill /pid[进程码]
重新试一下 as 连接adb 就可以了 或者直接重启 as