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" ,查看被占用的端口是哪个应用