user2671951
user2671951

Reputation: 1

How to access the Started WebServer PlayFramework Application on Amazon Ec2 Instance

I have create the Amazon Ec2 Instance and I deployed the Play Framework play 1.2.5 and Create the Project.

When I started the Project using play start -httpD.port = 80

The Application was successfully started and the log file thrown in that log file it shows waiting for initial response.

How to access that running server? I have entered my instance ip address along with port number in the as usual format but its not getting up.

Upvotes: -1

Views: 98

Answers (1)

ndeverge
ndeverge

Reputation: 21564

You have to open the TCP port in your AWS console:

  • Go to the Security Group settings
  • Find the Security Group that your instance is apart of
  • Click on Inbound Rules
  • Use the drop down and add HTTP (port 80)
  • Click Apply

Upvotes: 1

Related Questions