守护进程没有运行。现在从端口5037开始

时间:2014-04-16 08:50:34

标签: android

[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 occured.
[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-20131030\sdk\platform-tools\adb.exe' and can be executed.

在我尝试运行程序时发生了上述错误。作为一种解决方案,我通过打开comand promt来执行以下步骤。

Close the Eclipse if running
Go to the Android SDK platform-tools directory in Command Prompt
type adb kill-server
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.

但它不起作用,并在命令promt中显示

守护程序未运行。现在在端口5037上启动它 ADB服务器没有确认 未能启动DAEMON

2 个答案:

答案 0 :(得分:19)

参考链接:http://www.programering.com/a/MTNyUDMwATA.html

我遵循的步骤 1)在命令提示符下执行命令adb nodaemon server    命令提示符下的输出将是:发生以下错误无法绑定&#t; 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

上述步骤对我有用。

答案 1 :(得分:3)

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