1、执行下面命令:adb nodaemon server 会出现 cannot bind ‘tcp:5037‘
2、输入下面的命令:netstat -ano | findstr "5037" 可以查询什么占用了5037端口,再通过 taskkill /f /pid xxxx 把占用5037端口的进程给Kill掉就好,在运行一次netstat -ano | findstr "5037"
tasklist /fi "pid eq 端口号"
时间: 2024-11-10 12:01:24
1、执行下面命令:adb nodaemon server 会出现 cannot bind ‘tcp:5037‘
2、输入下面的命令:netstat -ano | findstr "5037" 可以查询什么占用了5037端口,再通过 taskkill /f /pid xxxx 把占用5037端口的进程给Kill掉就好,在运行一次netstat -ano | findstr "5037"
tasklist /fi "pid eq 端口号"