Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been experimenting with EC2 for a couple days and have been banging my head against simply even being able to access the sample site I've hosted. The stack is Rails 3.1.3 with Thin and Nginx.

I've tried several different configurations and finally ended up running the Nginx auto install script, which does return a webpage when I do a curl http://ec2-107-20-143-179.compute-1.amazonaws.com/. However, when I point my browser there, it hangs forever before saying the page cannot be found.

I have assigned an Elastic IP address, and I've enabled HTTP access via port 80.

I don't much experience with the sysadmin side and I'm basically stumped at this point. Any advice would be greatly appreciated.

share|improve this question
I just looked in my chrome at your url - it's working for me - maybe a browser caching issue? – Louis Sayers Apr 28 '12 at 14:51
Yes it is working now, massive case of user error. Thanks! – primer May 2 '12 at 16:03

3 Answers

Did you enable the http port to all ips? That would be done by going to:

EC2 -> Security Group -> Default (or your custome one) -> Inbound

And then Create a new rule for HTTP and as a source, you should assign: 0.0.0.0/0

That should do it.

share|improve this answer
I do in fact have a rule defined for HTTP. Its the EC2 default, listening at port 80 with all IP address allowed – primer Apr 20 '12 at 21:34
And is your web server si listening to port 80? – Deleteman Apr 23 '12 at 13:26
In the end I was initializing instances using the default security group -- which I mistakenly thought I had correctly set up. In fact I had defined a custom group with the proper settings. Stupid error on my part. – primer May 2 '12 at 16:17

I was here earlier looking for a solution to a similar problem I was having. It turns out in my case that the EC2 instance also had its own firewall running in addition to the EC2 security group. The command 'system-config-firewall' let me get in to open the ports. Ports 80 (HTTP) and 3306 (MySQL) were not open by default. 22 (SSH) was open. I also had to do 'yum install system-config-firewall'.

To summarize, my solution was:

> yum install system-config-firewall
> system-config-firewall
share|improve this answer
The first one gives Setting up Install Process No package system-config-firewall available. Nothing to do – MeadowMuffins Feb 20 at 16:00
This was exactly what I needed to do. – Ezekiel Victor Apr 2 at 7:06

This answer is for the newbies who have no idea what they are doing with an ec2 instance.

I was having the same problem and tried all the Security Group fixes to no avail.

As it turns out, I needed to turn on my server from the command line.

sudo service httpd start 

Sometimes it's dark, not because a fuse blew, but because you didn't flick the switch.

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.