17. error: cannot connect to daemon(adb.exe start-server' failed启动失败,端口占用)

问题:

之前更新了android studio版本,而后编译项目开启模拟器的时候出现以下问题:

17. error: cannot connect to daemon(adb.exe start-server' failed启动失败,端口占用)_第1张图片



原因:

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

[关于error: cannot connect to daemon]

'C:\Users\Administrator\AppData\Local\Android\Sdk\platform-tools\adb.exe start-server' failed -- run manually if necessary

之前还甩锅给AS更新问题,可是看到编译错误后发现并非如此,主要的错误提示信息如上所示:adb程序开启失败,原因就是adb程序的端口被占用,接下来只要打开任务管理器将占用端口的程序kill掉即可。



解决方法:

1. 首先要找到占用adb端口的程序,5037为adb默认端口,通过cmd查看该端口情况,查询代码为:

netstat -aon|findstr "5037"

2 . 通过以上查询可知adb端口号被6404占用了,接下来继续通过cmd查询6404代表的程序,代码如下:

tasklist|findstr "6540"

17. error: cannot connect to daemon(adb.exe start-server' failed启动失败,端口占用)_第2张图片

3 . 以上已经真相大白,我电脑上的360手机助手程序占用了接口,接下来打开任务管理器找到对应的程序kill掉,重新打开编译器即可。

17. error: cannot connect to daemon(adb.exe start-server' failed启动失败,端口占用)_第3张图片


希望对你们有帮助 :)

你可能感兴趣的:(Anroid,开发中bug解决记录)