AWS Parse deploy with Elastic Beanstalk

0

I am investigating the aws a bit and I have found a wall, to see if someone gives me a hand.

Doing the deploy de parse creates an instance, an elastic ip, an s3 etc. All you have to do is connect a server with mongodb, recommend mlab on this guide.

The problem is that once connected to your configuration MASTER_KEY , APP_ID and DATABASE_URI I can not access the parse using the ip: us-west-2.elasticbeanstalk.com/parse This is the message that the web gives me in any route.

  

Congratulations   Your first AWS Elastic Beanstalk Node.js application is now running on your own dedicated environment in the AWS Cloud

Any idea what I'm doing wrong? Greetings!

    
asked by Pablo Cegarra 03.03.2017 в 19:51
source

1 answer

-1

If you already have a database created, it has a security group. You can see them in:

EC2-> Security Groups.

You just have to enable a port in the inbound tab.

For database it is:

All TCP
TCP
0 - 65535
sg-XXXXXXX(El grupo de seguridad de tu elastic beanstalk).

Then in your application you simply give the data of connection to the database.

    
answered by 01.07.2017 в 16:38