Andriod Studio adb.exe,start-server' failed -- run manually if necessary 解决

首先查看了我的任务管理器,共有三个adb的程序在运行;

错误提示的是 Andriod Studio 中的adb.exe启动失败,于是,去关掉另外两个adb.exe,两分钟左右后,又出现了三个adb。

搜索资料后,发现这两个adb 是由虚拟机启动的,我装了genymotion的虚拟机,关掉genymotion和虚拟机后,再关掉三个adb进程,过会儿,只剩一个adb会出来运行,证实无误。

于是,解决:1.关掉Andriod Studio和genymotion以及genymotion的虚拟机。2.启动Andriod Studio ,此时有一个adb进程。3.启动Genymotion的虚拟机,再启动genymotion。ok,问题解决。

以后要注意: 先打开andriod studio 再打开虚拟机,否则andriod studio的adb无法启动。

虽然作为一只andriod菜鸟,但是 这种打开方式不正确导致的bug,我竟然没脸没皮的记了一笔~

Andriod Studio adb.exe,start-server' failed -- run manually if necessary 解决

时间: 2024-10-06 04:04:24

Andriod Studio adb.exe,start-server' failed -- run manually if necessary 解决的相关文章

'adb.exe,start-server' failed — run manually if necessary, Android Studio

思考问题:为什么出现以上问题,之前在Mac下 从未出现过adb相关的问题,后来思考后,是我下载了android的一个传输文件的程序在笔记本上 具体解决方法是:1先停止相关的模拟器,比如genymotion emulator之后重新开启adb: (Tools > Android > Unchecked Unable ADB Integration 之后再重新勾选即可) 2.最后再打开相关的模拟器或者真机调试即可 'adb.exe,start-server' failed - run manual

android studio adb.exe已停止工作

先输入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

navicat连接oracle报错“ORA-28547:connection to server failed,probable Oracle Net admin 解决办法

原因是: oci.dll的版本不对需要 Instant clientWindows 安装说明 为你的平台下载相应的 Instant Client 包(即使你使用的是 64-bit Windows,都必须是 32-bit 版本的 Instant Client).所有安装需要 Basic 或 Basic Lite package. 注意:        Oracle 9i 或以上,你需要 Instant Client 11 或以下        Oracle 8 和 8i 服务器,你需要 Insta

ADB not responding. If you'd like to retry, then please manually kill "adb.exe" and click 'Restart'

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

Andriod studio 打包aar

因为项目不同,有些公用库而且还是c++的,还有一些带资源的,简单的复制遇到库升级又是一轮配置,编译成aar则解决这些麻烦. 但是默认andriod studio的make moudle只生成debug包,在3.0以上及时生成release的apk,release的aar也不会生成. 这个时候要用到 "gradlew assembleRelease" 这个命令,在Andriod studio 里面打开终端,在项目的根目录下执行,(不能再Moudle里面执行). 如果出现Unsupport

studio adb连接不上手机 ADB server didn't ACK

问题描述:在eclipse的Logcat出现错误 [2014-01-08 14:00:07 - adb] ADB server didn't ACK [2014-01-08 14:00:07 - adb] * failed to start daemon * [2014-01-08 14:07:24 - adb] ADB server didn't ACK [2014-01-08 14:07:24 - adb] * failed to start daemon * 解决方法:先找到adb服务是否

adb.exe,start-server' failed

错误:The connection to adb is down, and a severe error has occured.You must restart adb and Eclipse.   adb.exe' and can be executed.方案:http://blog.csdn.net/yu413854285/article/details/7559333先看看这个 不行就动手 查看 adb.exe 端口的 5037 打开命令行cmd 输入netstat -nao|finds

ionic真机调试Android报错 - could not read ok from ADB Server * failed to start daemon * error: cannot connect to daemon

在使用真机调试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号的进程杀死.然后

android studio 虚拟机adb.exe已停止工作的处理

在搭建完android studio 后使用虚拟机或真机调试程序,出现如下错误.   在运行里输入cmd,打开命令行工具,使用netstat -aon|findstr 5037查看adb.exe的5037端口是否被占用.   我们可以看到5037被进程为6720的进程所占用,然后用命令tasklist /fi "PID eq 6720"的进程是什么程序,本人的是360电脑端的手机助手所占用.   马上卸载360的手机助手.或者关闭进程   然后再运行虚拟机或真机,错误不再出现,正常运行