Not able to access apache 2 from ec2 instance

0

I installed apache 2 via this command :

sudo apt-get install apache2

It is successfully installed on my amazone ec2 server, but I am not able to access it from my computer.

I issued the following command :

$ sudo netstat -nlp | grep apache

and the output is as following :

ubuntu@ip-172-31-1-1:/etc/apache2/conf-available$ sudo netstat -nlp | grep apache
tcp6       0      0 :::80                   :::*                    LISTEN      28162/apache2

Please advice... What changes should I apply to make it work ?

MrPandav

Posted 2015-05-27T14:13:17.217

Reputation: 111

What does the security group assigned to instance look like? – daxlerod – 2015-05-27T14:18:21.970

group id : sg-54008a31 & sg-96a12af3 – MrPandav – 2015-05-27T14:19:55.940

done ! inbound rule was only SSH , added one more ALL – MrPandav – 2015-05-27T14:22:16.193

No answers