[转]Android adb.exe程序启动不起来,如何处理 解决问题: 百度google大家多说的是任务管理器 kill掉adb 或者重启adb server,但我任务管理器就没有adb ,猜测是某个程序占用了adb端口.于是按此思路查找. 5037为adb默认端口 查看该端口情况如下: netstat -aon|findstr "5037" TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 6540 发现6540占用了 5037端口,继续查看6540的t…
首先查看了我的任务管理器,共有三个adb的程序在运行: 错误提示的是 Andriod Studio 中的adb.exe启动失败,于是,去关掉另外两个adb.exe,两分钟左右后,又出现了三个adb. 于是,1.关掉Andriod Studio和genymotion以及genymotion的虚拟机.2.启动Andriod Studio ,此时有一个adb进程.3.启动Genymotion的虚拟机,再启动genymotion.. 再次启动程序,又出现此类问题. 在命令行,查 netstat -ano…
ADB not responding. If you'd like to retry, then please manually kill "adb.exe" and click 'Restart'Errors from ADB:ddms: 'I:\android-sdk\platform-tools\adb.exe,start-server' failed -- run manually if necessary Try below steps: Close the Eclipse…
adb fail to open 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 \asdk\platform-tools\a…
在使用真机调试Android程序时,报错如下: could not read ok from ADB Server * failed to start daemon error: cannot connect to daemon 首先,打开命令行工具,找出占用5037端口号的对应pid号 netstat -ano | findstr :5037 如果端口被占用,在任务列表中找到占用端口的进程 tasklist | findstr processID 打开任务管理器,将对应pid号的进程杀死.然后…
adb启动问题:Invalid argument: cannot open transport registration socketpair could not read ok from ADB Server failed to start daemon * error: cannot connect to daemon 解决办法: 关闭系统自带的防火墙,重启OK (之前一直是关闭的,使用TeamViewer的时候把防火墙打开了) 另附解决adb端口占用问题解决: 1.adb nodaemon…
出错原因: cmd在path路径找不到adb命令,是因为adb.exe文件存在于android-sdk安装目录platform-tools/子目录下,要将这个路径配置到环境变量里面. 解决方案: 按照书中讲的添加环境变量:C:\android-sdk-windows\tools之后,再添加 \platform-tools到环境变量 .比如android-sdk安装在C盘根目录下,则添加环境变量:C:\android-sdk-windows\platform-tools…
 遇到问题描述: 运行android程序控制台输出 [2012-07-18 16:18:26 - ] The connection to adb is down, and a severe error has occured.    [2012-07-18 16:18:26 - ] You must restart adb and Eclipse.    [2012-07-18 16:18:26 - ] Please ensure that adb is correctly located at…
遇到问题描述: 运行android程序控制台输出 [2012-07-18 16:18:26 - ] The connection to adb is down, and a severe error has occured.    [2012-07-18 16:18:26 - ] You must restart adb and Eclipse.    [2012-07-18 16:18:26 - ] Please ensure that adb is correctly located at…
先输入adb看是否存在. 如果不存在则:在系统path里添加C:\Users\nubia\AppData\Local\Android\sdk\platform-tools 因为这个目录里有adb 或者https://jingyan.baidu.com/article/2009576191c93acb0721b435.html 这时候adb存在了 检查端口占用,http://www.2cto.com/kf/201501/370565.html http://www.imooc.com/articl…