是adb server端口被占用了 你先执行adb nodaemon server ,查看adb server的端口是多少 1 2 C:\Users\xxxx>adb nodaemon server   cannot bind 'tcp:5037' 再执行下netstat -ano | findstr "5037" 1 2 3 4 C:\Users\xxxxxx>netstat -ano | findstr "5037"     TCP    <a…
当把手机连接到电脑端口运行adb程序调试时,出现了下面这样的情况: 分析:出错的原因是adb的端口被其他程序的进程占领了,所以要做的就是找到并kill该进程.     工具/原料   cmd.exe.任务管理器 方法/步骤     在cmd中执行adb nodaemon server,查看adb的端口号是多少,一般情况下是5037(why?应该软件使用的端口号是固定的),如下图     再执行netstat -ano | findstr "5037" ,会看到如下类似的情形: 这里稍微…
原本是想跑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…
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.…
下面是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.…
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号进程 干掉那个进程 ********************…
草泥马的adb: “adb server is out of date. killing.... ADB server didn't ACK * failed to start daemon * ” 网上搜了一大堆,什么豌豆荚,360,拔插数据线,重启eclipse,关机重启还有人说重装系统,全都没用,.. 方法: 1.查看哪个狗日的程序占用了5037端口, 2.找出来杀了它就可以了. 例子: 1: 2: 3:…
忘了原文从哪来的了,过后查到补上链接 今天调试android的时候发现一个诡异的问题 C:\Users\xxxx>adb start-server   adb server is out of date.  killing...   ADB server didn't ACK   * failed to start daemon *  adb 不管执行 shell devices 还是logcat 都会报错 究其源就是adb server没启动经过分析整理如下: C:\Users\xxxx>a…
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.…