mongo|August 09, 2019|2 min read

How to take Mongodb Backup and Restore

TL;DR

Use mongodump with --uri for remote backups, mongorestore to import BSON dumps, and mongoimport for JSON/CSV data. Works across local and remote MongoDB instances.

How to take Mongodb Backup and Restore

Pre-requisite

Assuming you have a mongodb database, and you want to take backup and restore it somewhere. Lets see how we can take backup and then restore it. And, you must have installed mongodb tools like

  • mongodump
  • mongorestore
  • mongoimport

Commands to take Mongodb Backup

mongodump --db <source database name> --authenticationDatabase <source database name> -u <username of sourcedb> -p <password of source db>

It assumes that you have a running mongodb instance on port 27017.

Mongodb backup when database is on remote server or port is different on localhost

mongodump --host <hostname>:<port> --db <source database name> --authenticationDatabase <source database name> -u <username> -p <password>

where the dump is saved

By default, the backup dump is stored in a new directory named dump under current directory.

If you want to change the directory where the backup dump should be saved, use -o option

mongodump --db <source database name> -o <my directory path>

# for remote
mongodump --host <hostname>:<port> --db <source database name> --authenticationDatabase <source database name> -u <username> -p <password> -o <my directory path>

Backup selected collection

Above commands will take backup of complete database. If you want to take backup of only few collections, use following command:

mongodump --db <source database> --collection <name of collection>

Commands to restore mongodb database

mongorestore --db <target database name> -h <hostname>:<port> -u <username of target database> -p <password of target database> --authenticationDatabase <target database> <path of my database e.g. dump/mydb>

Restore only selected collection

Above command restore complete database. To restore only selected collection, use following:

mongorestore --db <target database> --collection <name of collection> <path of bson file under dump directory>

When you take backups, it creates binary json (bson) files in dump directory. Restore single collection command takes path of that bson file.

Restore from json files

Sometimes, you have have database dump in json format. Use following command:

mongoimport --db <source database> --collection <name of collection> --file <path of json file> --jsonArray

Restore from a csv file

mongoimport --db <database name>  --collection <collection name> --type csv --headerline --file <path of csv file>

Restore without restoring index

There are lot of command options while restoring. For example you don’t want to restore indexes. Use following command:

mongorestore --db <target database> --noIndexRestore -h <host>:<port> -u <username> -p <password> --authenticationDatabase <database name> <path of dump database>

Related Posts

How to take Backup from MongoDB and Restore to MongoDB

How to take Backup from MongoDB and Restore to MongoDB

This will take backup of your passed database name, to the passed folder. It…

How to connect Php docker container with Mongo DB docker container

How to connect Php docker container with Mongo DB docker container

Goto your command terminal. Type: This will expose port: 27017 by default. You…

How to install Mongo DB Driver for Php 7.x

How to install Mongo DB Driver for Php 7.x

The simplest way to install driver for php is using pecl. When I tried to run…

Mongoose - Using CRUD operations in mongodb in nodejs

Mongoose - Using CRUD operations in mongodb in nodejs

MongoDB CRUD Operations Mongoose provides a simple schema based solution to…

How to sync Mongodb data to ElasticSearch by using MongoConnector

How to sync Mongodb data to ElasticSearch by using MongoConnector

Introduction This post is about syncing your mongodo database data to…

How to run MongoDB replica set on Docker

How to run MongoDB replica set on Docker

Introduction This post is about hosting MongoDB replica set cluster with…

Latest Posts

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…