Unable to create Debug Bridge:Unable to start adb server

打开Android studio 时,报错.

Unable to create Debug Bridge: Unable to start adb server: error: could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037: 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 (10048)

error: unknown host servicecould not read ok from ADB Server* failed to start daemon *error: cannot connect to daemon'D:\installed\Android\sdk\platform-tools\adb.exe,start-server' failed -- run manually if necessar


解决办法:

根据提示查看adb的端口号5037被谁占用通过 netstat -aon|findstr “5037” 找出相应的pid号



再通过任务管理器找到相应pid号的进程或者命令tasklist 看到所有的进程信息,然后将其卸载,最后重启adb即可。




我的是 腾讯手机助手 给占用了.最好给卸载掉.



你可能感兴趣的:(android)