zoukankan      html  css  js  c++  java
  • adb :unknown host service

     adb 没法重启
       现象:C:UsersJohn>adb shell
                 adb server is out of date.  killing...
                ADB server didn't ACK
                * failed to start daemon *
                error: unknown host service
       分析:主要是由于5037端口被占用,android_sdk中的adb无法启动
       解决: 在console中输入 netstat -aon|findstr "5037" 查看占用的pid

    1.   协议    本地地址              外部地址                状态           PID  
    2.  TCP    127.0.0.1:5037       0.0.0.0             LISTENING       2244

                   输入tasklist /fi "pid eq  2244             
                   taskkill /pid 2244  /f          kill掉该进程
                   重启adb

  • 相关阅读:
    qt 计时器自动刷新图片
    qt读取文本
    QLable 显示图片
    QButtonGroup 的使用
    Qt乱码的问题
    wpf 依赖强制回调
    实现Button的动态响应
    C# 闭包对像
    2020新年目标
    捕获、冒泡与阻止事件传播
  • 原文地址:https://www.cnblogs.com/rzq232/p/3301180.html
Copyright © 2011-2022 走看看