守护程序未运行.现在在端口5037上启动它


[2014-04-16 14:01:05 - Abc] ------------------------------
[2014-04-16 14:01:05 - Abc] Android Launch!
[2014-04-16 14:01:05 - Abc] The connection to `ADB` is down, and a severe error has occurred.
[2014-04-16 14:01:05 - Abc] You must restart `ADB` and Eclipse.
[2014-04-16 14:01:05 - Abc] Please ensure that adb is correctly located at 'D:adt-bundle-windows-x86-20131030sdkplatform-toolsadb.exe' and can be executed.

在我尝试运行程序时发生了上述错误。作为一种解决方案,

我打开命令提示符完成了以下步骤:

  • 如果正在运行,请关闭Eclipse
  • 在命令提示符中转到Android SDK平台工具目录
  • 类型adb kill-server
  • 则键入adb start-server
  • 启动ADB服务器时没有抛出错误消息,然后启动adb is started successfully
  • 现在您可以再次启动Eclipse了

但它不起作用,在命令提示符中显示:

daemon not running .starting it now on port 5037 ADB server didn't ACK FAILED TO START DAEMON

引用链接:http://www.programering.com/a/MTNyUDMwATA.html

我遵循的步骤1( 在命令提示符下执行命令adb nodaemon server命令提示符下的输出为:出现以下错误,无法绑定"tcp:5037"原始ADB服务器端口绑定失败

2( 使用端口5037输入以下命令查询netstat -ano | findstr "5037"命令提示符上将提示以下信息:TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 9288

3( 查看任务管理器,关闭所有adb.exe

4( 重新启动eclipse或其他IDE

以上步骤对我有效。

这对我很有效:打开(操作系统的(任务管理器并终止adb.exe进程。现在重新启动adb,现在adb应该正常启动。

最新更新