如何找到NodeJS使用哪个端口?

时间:2019-02-08 13:26:37

标签: node.js linux port

我尝试过:

netstat -tupln 

这是结果:

Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:5000          0.0.0.0:*               LISTEN      -
tcp        0      0 127.0.0.1:5001          0.0.0.0:*               LISTEN      -
tcp        0      0 127.0.0.1:53            0.0.0.0:*               LISTEN      -
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      -
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      -
tcp        0      0 0.0.0.0:4445            0.0.0.0:*               LISTEN      -
tcp        0      0 127.0.0.1:8126          0.0.0.0:*               LISTEN      -

1 个答案:

答案 0 :(得分:0)

如果您有权访问代码,只需转到server.js或使用的任何文件名。那里提到了端口号。您可能会发现类似

const port = process.env.APP_PORT || 80;
app.set('port', port);

const server = http.createServer(app);