Top "Mongorestore" questions

A program that takes binary data created by mongodump and restores it to a MongoDB instance.

MongoDB restore warning

I'm following this tutorial to backup and restore a single MongoDB database. The backup command - sudo mongodump --db newdb …

mongodb database-backups mongodump mongorestore
Mongorestore, from meteor production server to local

I've found plenty of good instructions on how to use mongodump and mongorestore, to back up my meteor production server …

mongodb meteor mongodump mongorestore
Drop all indexes from all collections in a MongoDB database using the command line

I've used mongorestore to restore a database but I'm getting an error that the index already exists when I try …

mongodb indexing mongodump mongorestore
Which one is the preferred choice Mongodump VS Mongoexport for upgrading mongoDB database?

My customer uses mongoDB 2.4 and as there are some limitations with this version, we have give them the option to …

mongodb mongodump mongorestore
Why is mongorestore painfully slow?

I took a dump of a db having only 1 collection and two indices. The collection had roughly 6.5 million documents. When …

mongodb ubuntu mongorestore
mongo3.0 restore fails with error Failed: restore error: insertion error: EOF

I'm trying to restore a database with 100 collections (800GB) using mongorestore which was taken as a backup from mongo 2.4.4. I …

mongodb mongorestore
How to restore gzipped Monogdb single collection?

Hye everyone, I am new to mongodb I dumped one of my collection using following command mongodump --db somedb --collection …

mongodb mongodb-query mongodump mongorestore database
how to restore a collection or collections in mongodb from an archive file?

I have created a dump in an archive file by the following command : mongodump --archive=newcollection.1.archive --db neel --collection …

mongodb mongodump mongorestore
After Mongodump, calling MongoRestore hangs

We are trying to do a simple MongoDump on a relatively small DB. our steps are simple: export drop exisiting …

mongodb mongodump mongorestore nosql
mongorestore dropping collections using -drop option

Suppose if I have a database testdb with two collections collA and collB and try to restore only collB from …

mongodb mongorestore