0

我启动了运行 ubuntu 12.04 的亚马逊 ec2 实例

然后我按照说明从这里安装 node.js http://howtonode.org/how-to-install-nodejs

sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core

git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install

然后我使用示例代码制作hello.js

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello Node.js\n');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');

然后我跑了hello.js

/var/www$ node hello.js
Server running at http://127.0.0.1:8124/

但是,当我尝试从 url 访问它时,http://ec2-***.compute-1.amazonaws.com:8124/我从浏览器中得到一个错误页面。

关于如何让它显示在浏览器中的任何建议?

编辑 更改上面的代码行后我仍然遇到这个问题

}).listen(8124, "127.0.0.1");

对此

}).listen(8124);
4

2 回答 2

2

127.0.0.1 是环回地址。只有主机可以访问它。如果您想监听任何可用的 IP,请不要指定该参数。否则,请指定您要侦听的真实 IP。

于 2012-09-23T04:07:28.947 回答
0

我也有同样的问题,卸载Skype对我有用,您还可以搜索一些强制Skype移动到其他端口的设置。

于 2017-03-31T04:56:03.100 回答