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 if running
Go to the Android SDK platform-tools directory in Command Prompt
type adb kill-server (Eclipse should be closed before issuing these commands)
then type adb start-server
No error message is thrown while starting ADB server, then adb is started successfully.
Now you can start Eclipse again.

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

时间: 2024-07-30 03:23:36

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

Android Studio故障处理之ADB not responding.

当小白我想运行写好的项目时,Studio提示如下 ADB not responding. If you'd like to retry, then please manually kill "adb.exe 下面是解决办法: 1.运行cmd,输入:netstat -aon|findstr “5037”,回车后显示如下: 2.打开任务管理器,找到4984的PID,结束进程即可 PS:如果你的任务管理器没有显示PID,操作如下: 1.点击"查看",再点"选择列"

Adb not responding

今天启动Android Studio时,弹出了 adb not responding. you can wait more,or kill "adb.exe" process manually and click 'Restart' 此时ADB响应失败,当点击Restart不断弹出此提示,点击cancel更是无用. 下面给出解决方法:    window键+R :进入cmd     输入: adb kill-server 输入 adb statr-server: 输入 adb noda

ubuntu14.04(64位置) ADB Not Responding

今天装了一个很搞笑的比率Ubuntu14.04  还安装Android studio    写app   执行错误: Adb not responding. you can wait more or kill adb process manually and click 'restart' " Google了一下.找到一个外国佬写的专业解决方法: http://simpledeveloper.com/adb-not-responding-android-solution/ 我他妈的都试了.还是一

Android Studio 启动时候出现 adb not responding

最近在启动Android Studio  时经常报出 adb not responding,如下图 多次重启无效,经过多番查找资料和实践,可能是adb.exe端口(5037)被占用了,总结出了两种方式可以解决以上问题. 第一.在命令提示符中输入命令:netstar -aon|findstr “5037”,结果如下 以上可知5037端口被pid为“6716”的程序占用了,我们来到任务管理中检查pid为6716的程序,发现kadb.exe程序在运行着,如下 我们把该进程结束了,然后重启Android

ubuntu14.04(64位) ADB Not Responding

今天很逗比的装了Ubuntu14.04  又装了Android studio    写了个app   运行报错: Adb not responding. you can wait more or kill adb process manually and click 'restart' " Google了一下,找到一个外国佬写的专业解决方法: http://simpledeveloper.com/adb-not-responding-android-solution/ 我他妈的都试了,还是一样报

安卓解决adb not responding 问题

ADB运行默认的端口号是5037 我们查看有哪些进程占用了这个端口 打开命令行输入 netstat -aon |findstr "5037"  最后一列就是PID 你就可以到任务管理器中去查看到底是哪些进程了. 最后我发现占用进程的是搜狗和金山毒霸的一个进程,搜狗打字没办法,但果断卸载了金山毒霸.前段时间大概也因为金山毒霸清理了VS的某些文件导致崩溃了,杀毒软件果然不适合程序猿. 以上

ADB Not Responding - Android Studio

问题描述: 最近安装了Android Studio v1.0,运行的时候老是这个错误 解决方案: 网上有人说是已经有adb的进程在运行,可是打开任务管理器,找不到对应的adb 进程. 无奈之下,想到adb运行的默认端口是5037, 因此通过命令行 netstat -aon |findstr "5037" 找到了PID,通过PID看到原来是百度自己包装了一个adb(百度手机助手),果断杀掉这个进程,运行android studio,一切恢复正常.

Android Studio "ADB not responding"

昨天Android Studio还好好的,今天再运行就出问题了: 开始以为是 sdk 问题,把 sdk 更改为 Android Studio 自带的 sdk, 可问题依旧存在: 点击下面的 Android 小图标,打算看 LogCat, 结果看到了这个: 后来上网查找解决了,原来是 sdk 端口被占用了! 解决方法: adb 运行占用的端口是 5037, 进入 cmd 窗口,运行 netstat -aon|findstr "5037"  (注意空格) 由此可知 5037 端口被 PID

[每天解决一问题系列 - 0010] ADB Not Responding - Android Studio

问题描述: 最近安装了Android Studio v1.0,运行的时候老是这个错误 解决方案: 网上有人说是已经有adb的进程在运行,可是打开任务管理器,找不到对应的adb 进程. 无奈之下,想到adb运行的默认端口是5037, 因此通过命令行 netstat -aon |findstr "5037" 找到了PID,通过PID看到原来是百度自己包装了一个adb(百度手机助手),果断杀掉这个进程,运行android studio,一切恢复正常.