在 Amazon EC2 上安装 node.js

发布于 2024-09-08 12:59:34 字数 1173 浏览 4 评论 0原文

因此,我正在使用 ubuntu 8.04 在 amazon ec2 上安装 node.js,并运行 node sayhello.js 这是这段代码:

 var sys = require('sys'),
    http = require('http');
 http.createServer(function (req, res) {
   setTimeout(function () {
     res.writeHead(200, {'Content-Type': 'text/html'});
     res.write('<br/><strong>&nbsp;&nbsp;&nbsp;&nbsp;Hello World!</strong>');
     res.end();
     sys.puts(sys.inspect(req, false));
   }, 2000);
 }).listen(8000);
   sys.puts('Server running at http://ec2-174-12-132-193.compute-1.amazonaws.com:8000/');

我明白了

服务器运行于 http://ec2-174-12-132-193 .compute-1.amazonaws.com:8000/

正确显示在控制台中。

教程 说:在浏览器中转到 :8000,您应该会看到 Hello World!

我转到 http://ec2-174-12- 132-193.compute-1.amazonaws.com:8000/ (不是真实地址)但它不会加载(只是连接...)。该示例使用本地主机,公共域是否不正确或类似?

谢谢。

So I'm installing node.js on amazon ec2 with ubuntu 8.04, and and have run node sayhello.js which is this code:

 var sys = require('sys'),
    http = require('http');
 http.createServer(function (req, res) {
   setTimeout(function () {
     res.writeHead(200, {'Content-Type': 'text/html'});
     res.write('<br/><strong>    Hello World!</strong>');
     res.end();
     sys.puts(sys.inspect(req, false));
   }, 2000);
 }).listen(8000);
   sys.puts('Server running at http://ec2-174-12-132-193.compute-1.amazonaws.com:8000/');

I see

Server running at
http://ec2-174-12-132-193.compute-1.amazonaws.com:8000/

being displayed in the console correctly.

The tutorial says: go to :8000 in the browser and you should see Hello World!

I go to http://ec2-174-12-132-193.compute-1.amazonaws.com:8000/ (not the real address) but it doesn't load (just connecting...). The example uses localhost, is doing the public domain incorrect or some such?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

暮凉 2024-09-15 12:59:34

您需要在安全组中开放端口 8000。

如果您已安装 EC2 命令行工具,请尝试运行:

$ ec2-authorize default -p 8000

这假定您使用的是默认安全组。如果没有,请将默认更改为您的安全组的名称。

如果您仅使用 Web 界面,请按照以下步骤操作:

  1. 登录 AWS 控制台
  2. 在顶部栏中选择 Amazon EC2
  3. 单击左侧菜单中的安全组
  4. 单击您分配的安全组到您的 EC2 实例(可能只是默认)
  5. 在底部窗口窗格中,单击入站选项卡
  6. 端口范围:设置为 8000 并保留其他两个输入,
  7. 单击添加规则

You need to open up port 8000 in your security group.

If you've got the EC2 command line tools installed, try running:

$ ec2-authorize default -p 8000

This assumes that you're using the default security group. If not, change default to the name of your security group.

If you're just using the web interface follow these steps:

  1. Login to the AWS console
  2. Select Amazon EC2 in the top bar
  3. Click on Security Groups in the menu on the left
  4. Click on the security group that you assigned to your EC2 instance (probably just default)
  5. In the bottom window pane, click on the Inbound tab
  6. Set Port range: to 8000 and leave the other two inputs as they are
  7. Click Add Rule
梦萦几度 2024-09-15 12:59:34

在与 EC2 实例关联的安全组中,确保您的 IP 或公众开放端口 8000。

Within the security group associated with the EC2 instance, make sure you have port 8000 open to your IP or to the public.

不弃不离 2024-09-15 12:59:34

检查以下内容:

  1. 您是否允许从所有 ip 访问安全组中的端口 8000
  2. 您是否修改了正确的安全组(例如,quicklaunch-1),而不是(例如,quicklaunch-2)。我编辑错误的次数比我愿意承认的还要多。
  3. 您已在 Linux 防火墙上打开端口 8000
  4. 您的服务器实际上正在运行(您应该在命令行中看到“侦听端口 8000”)。

以下是有关如何在 Amazon EC2 上设置 Node.js Web 服务器的教程:http://www.lauradhamilton.com/how-to-set-up-a-nodejs-web-server-on-amazon-ec2

有点比你正在做的更复杂(因为它使用从 80 到 8080 的 ip 转发),但有关打开 Linux 防火墙的部分是相同的。

Check the following:

  1. That you are allowing access from all ips to port 8000 in the security group
  2. That you have modified the CORRECT security group (e.g., quicklaunch-1) and not, say, quicklaunch-2. I've edited the wrong one more times than I care to admit.
  3. That you have opened port 8000 on the Linux firewall
  4. That your server is actually running (you should see "Listening on port 8000" in the command line).

Here is a tutorial on how to set up a Node.js web server on Amazon EC2: http://www.lauradhamilton.com/how-to-set-up-a-nodejs-web-server-on-amazon-ec2

It's a bit more complicated than what you're doing (because it uses ip forwarding from 80 to 8080) but the part about opening the Linux firewall is the same.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文