在AWS ec2 t1.micro上使用node.js?

时间:2013-06-29 04:24:50

标签: node.js amazon-ec2

我正在尝试“Hello World”node.js脚本,但我遇到了打扰....我正在执行程序但它没有连接到我的localhost:8080,因为我执行程序后当我访问我的浏览器时,我收到了一个Chrome“Oops Google找不到”页面。我在Windows上的Cygwin中使用AWS t1.micro ec2实例运行,所以我不确定它是否存在CPU问题,但我对于发生了什么感到困惑,我不想在没有理解原因的情况下前进。

  var http = require("http"); //How we require modules

  http.createServer(function(request, response) {
    response.writeHead(200); //Status code in header
    response.write("Hello World!"); //Response body
    response.end(); // close the connection
  }).listen(8080);

 console.log('Listening on port 8080...');

1 个答案:

答案 0 :(得分:1)

你的chrome也运行在同一个t1.micro上吗? 否则,您需要使用实例的IP地址/域名。

确保您的安全组允许从本地计算机访问端口8080。