美文网首页Android StudioAndroid Other
could not install *smartsocket*

could not install *smartsocket*

作者: proud2008 | 来源:发表于2016-05-28 09:45 被阅读4539次

    问题:

    daemon not running. starting it now on port 5037
    error: could not install smartsocket listener: cannot bind to 127.0.0.1:5037: XXX(10048) could not read ok from ADB Server
    failed to start daemon error: cannot connect to daemon
    原因:
    基本是因为5037端口被占用
    解决:
    以下适用Windows 运命行下
    具体查看被占用的端口进程

     netstat -aon|findstr 5037
    
    Paste_Image.png
    查看进程的具体描述
    tasklist /fi "PID eq 5008"
    5008为上步找到pid
    Paste_Image.png
    强制退出进程
    taskkill /pid 5008 /f
    /f表示强制
    重新启动adb就可以了
    adb start-server

    关闭adb 重启

    adb kill-server 
    adb start-server 
    

    相关文章

      网友评论

      • ForMyHome:作者您好 我在运行adb的时候也遇到这个问题,运行代码以后没有第一行,直接就是下面的这种,这个我该怎么做啊 还请作者帮忙。
        tcp 127.0.0.1:5037 127.0.0.1:55418 time_wait 0
        tcp 127.0.0.1:5037 127.0.0.1:55420 time_wait 0
        tcp 127.0.0.1:5037 127.0.0.1:55422 time_wait 0
      • 89285115fe47:查看进程的具体描述
        tasklist /fi "PID eq 5008"
        很棒,知道是哪个应用的锅了。

      本文标题: could not install *smartsocket*

      本文链接:https://www.haomeiwen.com/subject/qspfdttx.html