adb 报错error: could not install *smartsocket* listener: cannot bind to 127.0.0.1:65533
今天在用adb shell 进行USB调试时忽然报错 如图:
其实就是65533端口被占用了
解决方法:
- netstat -ano | findstr “65533” //查看该端口被那个进程占用 ,最后一列为进程号:例如 123
- 通过进程号查看进程名: tasklist | findstr “123”
- 在任务管理器中结束该进程
还没有评论,来说两句吧...