通过虚拟机上的localhost:port访问node.js / grunt服务器

时间:2013-10-25 07:05:48

标签: node.js virtual-machine gruntjs

我通过Grunt在端口9000上本地运行node.js服务器。我也有一台虚拟机在运行(vmware),但我无法通过它访问节点服务器。我已经将VM配置为通过localhost访问主机上的Apache服务器,但是:9000未找到'。

任何人都知道怎么做?

2 个答案:

答案 0 :(得分:45)

知道了!在我的项目的Grunt.js文件中有这样的设置:

grunt.initConfig({
    ...
    connect: {
      options: {
        port: 9000,
        // Change this to '0.0.0.0' to access the server from outside.
        hostname: 'localhost'
      },
    }
    ...
  });

我所要做的就是将localhost更改为0.0.0.0并重新启动grunt server

答案 1 :(得分:3)

您必须使用本地IP地址。

我在Mac上,所以我转到系统偏好设置>网络> "高级"标签> TCP / IP> IPv4地址:( ex 10.0.0.3)

然后使用您的端口号(例如:9000)或您设置的任何内容将浏览器指向该地址。

例如:http://10.0.0.3:9000

我不认为这对您的本地邮箱非常安全,因此请确保在完成工作后终止服务器。希望这会有所帮助。