ADB server didn't ACK failed to start daemon问题

cmd -> netstat -ano|findstr "5037"
查看adb占用端口
杀掉占用进程,重启adb。

杀进程:
taskkill /im 进程名
taskkill /pid 进程序号 -t(结束该进程) -f(强制结束该进程以及所有子进程)
wmic process where name="进程名" call terminate
ntsd -c p -p 进程序号
ps:第一种和第三种可同时关闭多个进程名相同的进程

猜你喜欢

转载自uuubd.iteye.com/blog/1841139