欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

解决android sdk 运行出现 could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037:的问题

程序员文章站 2022-06-23 12:19:34
在添加android平台后,cordova run android 出现 以下问题:error: could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037: 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 (10048)This application has requested the Runtime to terminate it in an unusual way.Please contact...

在添加android平台后,cordova run android 出现 以下问题:

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

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
could not read ok from ADB Server
* failed to start daemon *
error: cannot connect to daemon

具体原因是 5037端口被占用了。

打开命令提示符输入以下:

 netstat -aon|findstr 5037

解决android sdk 运行出现 could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037:的问题

让我们看看进程的具体描述

tasklist /fi "PID eq 7704"

解决android sdk 运行出现 could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037:的问题

 

强制退出进程

taskkill /pid 7704 /f

解决android sdk 运行出现 could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037:的问题

再重启一下adb

adb start-server

解决android sdk 运行出现 could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037:的问题

当我再运行cordova run android 就没问题了。

本文地址:https://blog.csdn.net/lcombat/article/details/107560119

相关标签: android