After getting help from @chenroth on the topic of deploying my application to EC2, I found out I need to manually install the Mongo database on an EC2 instance.
Using mup to reference via URL the database a non local copy of Mongo is straight forward, but I need to manually install Mongo and configure the port (and I’m not sure, but I might have to manually setup the database too).
This is an example of the mup file, where the Meteor application will reference Mongo from a URL:
// mup1.json
"env": {
"ROOT_URL": "https://great_domain.com",
"MONGO_URL": "mongodb://databases.great_domain.com:1337"
},
My question is, on a EC2 instance, using Meteor 1.0.3.2, how I install Mongo, configure database server port at the database level and EC2 level for inbound and outbound traffic, possibly set up security and a database?
I would like my database to function just as if it was a local instance.