error: cannot connect to daemon(adb.exe start-server' failed启动失败,端口占用)
- 首先要找到占用adb端口的程序,5037为adb默认端口,通过cmd查看该端口情况,查询代码为:
netstat -aon|findstr "5037"
查询的结果:
2.通过以上查询可知adb端口号被3560占用了,接下来继续通过cmd查询3560代表的程序,代码如下:
tasklist|findstr "3560"
是被 460MobileLink.exe占用,打开任务管理器终止
3.结束进程之后,重新连接手机,显示成功