daemon not running.starting it now on port 5037 *ADB
2. 原因:adb的端口(5037)被占用了。至于这个5037端口,可以参考本博客另外 一篇文章:
http://blog.csdn.net/liranke/article/details/4999210
(1)执行:adb nodaemon server
问题cannot bind 'tcp:5037'
(2)netstat -ano | findstr "5037"
TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 8516
TCP 127.0.0.1:5037 127.0.0.1:59163 TIME_WAIT 0
TCP 127.0.0.1:5037 127.0.0.1:59164 TIME_WAIT 0
TCP 127.0.0.1:5037 127.0.0.1:59167 TIME_WAIT 0
(3)。tasklist | findstr "8516"
360mobileloader.exe 8516 Console 1 3,071 K
(4)tasklist
找到360mobileloader.exe 的pid
(5)taskkill /f /pid 8516
http://bbs.phonegap100.com/thread-314-1-1.html
这个帖子能解决你的问题
页:
[1]