Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I populate a MongoDB instance on my local machine, can I wholesale transfer that database to a server and have it work without too much effort?
The reason I ask is that my server is currently an Amazon EC2 Micro instance and I need to put LOTS of data into a MongoDB and don't think I can spare the transactions and bandwidth on the EC2 instance.

share|improve this question
2  
It's never a good thing when you ask a question on SO and 5 minutes later you google for your tags and the first item is your brand new question on SO..... – James P. Wright Jul 14 '11 at 18:09
That's why I usually google first. :-) – Peter K. Jul 14 '11 at 20:13

1 Answer

up vote 3 down vote accepted

There is copy database command which I guess should be good fit for your need.

Alternatively, you can just stop MongoDb, copy the database files to another server and run an instance of MongoDb there.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.