gpt4 book ai didi

node.js - 无法连接到 ubuntu xenial 上的 nodejs

转载 作者:行者123 更新时间:2023-12-04 19:15:20 26 4
gpt4 key购买 nike

我正在使用 vagrant 在 vi​​rtualbox 上创建一台机器。该机器只有全新安装的 Ubuntu(更新)和 Node 。

Node 服务器.js 可以在我的系统中找到安装。可以在 chrome 上看到“Hello world”。
但是当我 ssh 进入我的机器并使用 Node 服务器.js 在服务器上,我在 chrome 上得到 ERR_CONNECTION_RESET 。

这是我所有的代码

Vagrant 文件:

  Vagrant.require_version ">= 1.8.6"

Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"

config.vm.network "forwarded_port", guest: 3000, host: 3000
config.vm.synced_folder ".", "/var/www/", :mount_options => ["dmode=777", "fmode=666"]

config.vm.provider "virtualbox" do |virtualbox|
virtualbox.name = "vagrant"
virtualbox.memory = 512
virtualbox.cpus = 1
virtualbox.gui = false
end
end

服务器.js
const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World\n');
});

server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});

软件版本:
  • windows 10 主页
  • Vagrant 1.8.6
  • 虚拟机 5.1.8
  • ubuntu xenial 64
  • Node v6.9.1
  • 最佳答案

    在 Vagrant 中运行时,地址为 127.0.0.1不一定映射到“本地主机”。删除主机名,你应该没问题:

    server.listen(port, () => {
    console.log(`Server listening ${port}/`);
    });

    省略 the hostname defaults to 0.0.0.0

    关于node.js - 无法连接到 ubuntu xenial 上的 nodejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40219855/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com