The connection to adb is down, and a severe error has occured. [-- :: - HelloOPone] You must restart adb and Eclipse. [-- :: - HelloOPone] Please ensure that adb is correctly located at 'D:\OPhoneSDK_1.5 \platform-tools\adb.exe' and can be executed.…
在运行 adb 命令时出现了例如以下提示: adb server is out of date.  killing... 导致 adb 无法正常启动,更无法运行其它命令. 有问题怎么办?百度呗.查了查,说是port被占用了,adb 默认port是 5037,那就看看吧: shell命令:netstat -ano | findstr "5037" 5037 port的确被 5676 这个进程占用了.最简单粗暴的办法:重新启动计算机.当然,我们不至于如此粗暴,温和地 kill 掉这个进程即…
adb server is out of date.  killing完美解决 今天,久未出现的著名的“adb server is out of date.  killing”又发生了,在此,将解决方法记下,以便日后查看. 连接usb后重启adb-server: adb kill-server adb start-server adb devices 1. 错误信息: C:\Users\lizy>adb devices adb devicesadb server is out of date.…
原本是想跑monkey测试的,可使用adb命令时提示:adb server is out of date. killing... 出现这个问题的原因是:adb使用的端口5037被占用了.下面我们说下如何找到是哪个程序占用了这个端口,顺便看看cmd里面的一些类似Linux的进程操作.  1.错误信息: C:\Users\admin>adb shell monkey -helpadb server is out of date. killing...ADB server didn't ACK* fa…
今天,久未出现的著名的“adb server is out of date.  killing”又发生了,在此,将解决方法记下,以便日后查看. 1. 错误信息: C:\Users\lizy>adb devices adb devicesadb server is out of date.  killing... ADB server didn't ACK* failed to start daemon *error: unknown host service 2. 原因: adb的端口(5037…
在使用ADT Bundle进Android开发时,有时经常会碰到如下错误提示: adb server is out of date. killing... ADB server didn't ACK * failed to start daemon * 在网上查找了不少资料,最后得知其原因在于ADB server没有成功启动,其端口被占用. 首先查找对应端口: F:\adt-bundle\sdk\platform-tools>adb nodaemon server cannot bind 'tc…
下面是Android的学习笔记,原文地址. 我是使用adb devices出现如下红字错误, 使用第一种方法方法,结果关掉豌豆荚就可以了. android adb启动失败问题 adb server is out of date.  killing... ADB server didn't ACK * failed to start daemon *   今天打开Eclipse,真机连接之前,是要启动adb的,突然发现就失败了. 错误如下--> adb server is out of date.…
The connection to adb is down, and a severe error has occured. [-- :: - HelloOPone] You must restart adb and Eclipse. [-- :: - HelloOPone] Please ensure that adb is correctly located at 'D:\OPhoneSDK_1.5 \platform-tools\adb.exe' and can be executed.…
问题 使用 adb 命令的时候报错如下: adb server is out of date. killing... ADB server didn't ACK * failed to start daemon * error: 问题原因 不同软件中的 adb.exe 版本冲突.调用的 adb 命令的版本 和 android_sdk/platform-tools 目录下的 adb 版本不一样导致的(即调用的可能不是 android_sdk/platform-tools 目录下的 adb). 解决…
C:\Users\xxxx>adb devicesadb server is out of date. killing... 查看端口, 发现被占用 C:\Users\xxxx>adb nodaemon server cannot bind 'tcp:5037' 找到相应的进程 C:\Users\xxxxxx>netstat -ano | findstr "5037" 进入任务管理器, 找到对应的 5037号进程 干掉那个进程 ********************…