我启动了运行 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);