Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>&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/');

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.

share|improve this question

2 Answers

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

share|improve this answer

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
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.