问题描述:
执行命令 adb connect 127.0.0.1:62001,报错如下:
* daemon not running; starting now at tcp:5037
could not read ok from ADB Server
* failed to start daemon
error: cannot connect to daemon
原因解析:
使用命令查看端口是否被占用netstat -ano | findstr "5037"
查看到5037端口被占用
解决方式:
执行命令kill进程,释放5037端口:
taskkill -f -pid 15276
重新执行adb connect 127.0.0.1:62001命令,连接成功