-2

I rebooted my Amazon EC2 Linux Instance today, though Amazon's AWS website. Now if I go to my website Safari says it can't find the server, AWS says my IP has stayed the same. What is wrong here?

My website is jeffarries.com and my IP is 54.213.219.247

Thanks for your effort!

Emmet Arries
  • 117
  • 1
  • 8

1 Answers1

1

You should make httpd service to start automatically on system reboot to avoid such failures.

on Redhat/Fedora:

chkconfig --add httpd

On Ubuntu/Debian:

sudo update-rc.d apache2 defaults

Rumesh Bandara
  • 160
  • 1
  • 9