VS Code ECONNREFUSED中的Node JS调试

时间:2019-07-19 13:10:32

标签: node.js debugging visual-studio-code

我在EC2的nginx后面运行了一个节点应用。

这是我在launch.json中的配置:

"version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "attach",
            "name": "Attach to Remote",
            "address": "xx.214.xxx.106",
            "port":9229,
            "remoteRoot": "home/username/web/myappfolder",
            "timeout": 40000,

        },

我收到此消息: enter image description here

我检查了本地和远程计算机上的所有防火墙,但没有用。 我想可能是我必须插入用户名和密码,但是如果我尝试在launch.json中添加“ env”变量(如this document中所述),则表示不允许这样做。我在网上搜索没有成功。有帮助吗?

1 个答案:

答案 0 :(得分:0)

您是否检查过是否有其他应用程序使用与应用程序相同的端口?