Simar
Simar

Reputation: 91

EC2 Instance cannot be accessed publicly

I have configured EC2 instance(Ubuntu 14.04) on AWS. Intalled JDK, Tomcat,MySQL to deploy my web-application. After deploying, I can access it using localhost or Public IP(Provided by AWS) from UBUNUTU (inside the ubuntu) but can not access from outside. I want to access it publicly. How to do that?

Upvotes: 0

Views: 70

Answers (1)

Naveen Vijay
Naveen Vijay

Reputation: 16532

Please check the Security group Setting for the port 80 (HTTP) is allowed for 0.0.0.0/0 [ all internet ].

The other items which might come in the way of public access are

  1. Attachment of Elastic IP
  2. Attachment of Internet gateway to VPC
  3. 0.0.0.0/0 rule to subnet route table
  4. ACL Rules
  5. operating system firewall

Upvotes: 2

Related Questions