安卓逆向:adb forward 转发端口遇到 cannot bind listener: cannot bind to 127.0.0.1:8700 报错

1. 问题

  • 使用 adb forward 转发端口时,遇到 adb.exe: error: cannot bind listener: cannot bind to 127.0.0.1:8700 错误;
adb forward tcp:8700 jdwp:15167
  • 报错:

adb.exe: error: cannot bind listener: cannot bind to 127.0.0.1:8700: 通常每个套接字地址(协议/网络地址/端口)只允许使用一 次。 (10048)

2. 解决

  • 打开 cmd 输入如下命令,查找 8700 端口占用程序 PID;
netstat -nao | findstr "8700"
  • 得到下图,从中找到进程号:


    image.png
  • 打开任务管理器,点击 详细信息,找到 PID 对应程序,鼠标右键 -> 结束进程

image.png

你可能感兴趣的:(安卓逆向:adb forward 转发端口遇到 cannot bind listener: cannot bind to 127.0.0.1:8700 报错)