Create MongoDB Dump
Ask for MongoDB dump from the customer. If they are not familiar, ask them to run the following command to get the MongoDB dump
- ssh to MongoDB server
- Run the following command to export rev database
- mongodump --db rev --out rev_<TODAYS_DATE>
- The above command will create a folder called "rev_<TODAYS_DATE>"
- Ask the customer to zip the dump folder "rev_<TODAYS_DATE>" and provide it to us
- zip -r rev.zip rev_<TODAYS_DATE>
Can use SCP to grab file
Import MongoDB Dump
Once you the MongoDB dump zip from the customer, import into a local (or QA) MongoDB server
- Copy the MongoDB zip file to the MongoDB server
- ssh to MongoDB server
- Unzip the dump zip into a temporary folder
- unzip rev.zip
- The above command will create the folder rev_<TODAYS_DATE> (from the MongoDB dump instructions)
- Run the following command to import rev database into a database called "rev_<CUSTOMER_NAME>
- mongorestore --db rev_<CUSTOMER_NAME> rev_<TODAYS_DATE>/rev