出現(xiàn)的問題原因可能是端口被其他程序占用危队、連接有問題和其他配置問題。
怎么診斷是否端口被占呢钙畔?如果被占用怎樣解決呢茫陆?
操作步驟如下:
①利用adb查看
adb kill-server
adb start-server
如果是被占用會出現(xiàn) 一下情況
Unable to create Debug Bridge: Unable to start adb server: error: could not install smartsocket listener: cannot bind to 127.0.0.1:5037: 通常每個(gè)套接字地址(協(xié)議/網(wǎng)絡(luò)地址/端口)只允許使用一次。 (10048)
could not read ok from ADB Server
-
failed to start daemon *
error: cannot connect to daemon②如果被占用則找出占用該端口的進(jìn)程IP
netstat -aon|findstr 5037
找到了PID后進(jìn)入任務(wù)管理器把對應(yīng)PID的進(jìn)程殺死擎析。進(jìn)入Android studio 重新運(yùn)行就能連接上了盅弛。
也可以繼續(xù)在用命令殺死進(jìn)程
taskkill /pid xxxx(這里填PID) /f
然后重啟adb
adb start-server