zoukankan      html  css  js  c++  java
  • 有关于* daemon not running.starting it now on port 5037 *ADB

    adb shell 时出现以下信息:
     * daemon not running. starting it now on port 5037 *

       ADB server didn't ACK
     * failed to start daemon *

    error: cannot connect to daemon
    ADB SERVER的端口被占用
     
    1、执行下面命令:adb nodaemon server  会出现  cannot bind 'tcp:5037'
    2、输入下面的命令:netstat -ano | findstr "5037"  可以查询什么占用了5037端口,再通过   taskkill /f /pid xxxx 把占用5037端口的进程给Kill掉就好,在运行一次netstat -ano | findstr "5037"

    有关于* <wbr>daemon <wbr>not <wbr>running.starting <wbr>it <wbr>now <wbr>on <wbr>port <wbr>5037 <wbr>*ADB <wbr>

    有关于* <wbr>daemon <wbr>not <wbr>running.starting <wbr>it <wbr>now <wbr>on <wbr>port <wbr>5037 <wbr>*ADB <wbr>
     
     
    此方法已经通过使用可以成功解决问题。
    另有方法:  在cmd中进入platform-tool路径下 输入 adb kill-server 这是adb就开始重新启动了在Eclipse的control 界面可以看到 attempt connection.....1..2...3.........11就可以了
    还没有使用过待学习!!!
     
    转:http://blog.sina.com.cn/s/blog_7e4235d70101q4sm.html
  • 相关阅读:
    素数
    超级素数
    SUMMARIZE 6.1
    广度优先搜索与八字码问题
    poj2352
    poj1198
    康托展开
    STL里的内存池实现
    构造函数,C++内存管理,内存泄漏定位
    内联函数,宏定义,内存对齐,类型转换
  • 原文地址:https://www.cnblogs.com/tmlee/p/5054726.html
Copyright © 2011-2022 走看看