任何adb
命令都会产生以下输出:
* daemon not running. starting it now on port 5037 *
cannot bind 'local:5037'
ADB server didn't ACK
* failed to start daemon *
error: cannot connect to daemon
没有正在运行的 adb 实例,并且没有任何东西使用 TCP 端口 5037。
答案1
请注意,错误信息是local:5037
,而不是tcp:5037
。ADB 实际正在尝试连接到 处的 unix 套接字/tmp/5037
,但失败了。
在我的情况下,这是因为我之前以 root 身份运行了 adb。因此,套接字归 root 所有,禁止我的用户删除它。相关摘录自strace adb fork-server server
:
socket(PF_LOCAL, SOCK_STREAM, 0) = 8
unlink("/tmp/5037") = -1 EPERM (Operation not permitted)
setsockopt(8, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
bind(8, {sa_family=AF_LOCAL, sun_path="/tmp/5037"}, 12) = -1 EADDRINUSE (Address already in use)
close(8) = 0