VS代码:在127.0.0.1:9229上启动检查器失败:地址已在使用中

时间:2019-11-25 13:43:01

标签: strapi

到目前为止,我已经使用了“ processId”:{command:PickProcess}“,也许这不是最好的方法,但是它总是有效的。”不幸的是,这种方法已经几天没用了。 (请参阅附件)

在控制台中,我收到“在127.0.0.1:9229上启动检查器失败:地址已在使用中”。

我还没有弄清楚问题出在哪里。有人可以给我提示吗?

enter image description here enter image description here enter image description here enter image description here

2 个答案:

答案 0 :(得分:1)

我在Linux机器上也遇到同样的问题。

运行lsof -i :9229命令以查找哪个进程正在使用端口9229

然后跑了kill -9 <process id using the port> 通常是扩展管理器,然后重新启动

或者,您可以在vs代码中打开流程管理器并杀死扩展主机 enter image description here

然后重新启动vscode并尝试使用attach to process id

进行调试

答案 1 :(得分:0)

对于Windows:

C:\Users\Niroshan>netstat -ano|findstr "PID :8080"

Proto Local Address Foreign Address State PID
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 18264

taskkill /pid 18264 /f

this answer:

中所述