mongodbHow to backup a MongoDB database?
Backup of a MongoDB database can be done using the mongodump command. This command will create a binary dump of the contents of the database.
Example
mongodump --db mydb --out /data/backup/
This command will create a backup of the mydb database in the /data/backup/ directory.
The mongodump command has several options that can be used to customize the backup process. These include:
--db: Specify the database to backup--collection: Specify the collection to backup--out: Specify the output directory--query: Specify a query to filter the documents to backup
For more information, please refer to the MongoDB documentation.
More of Mongodb
- How to bind IP addresses for MongoDB server?
- How to list MongoDB users?
- How to use triggers in MongoDB?
- How to use transactions in MongoDB?
- How to use MongoDB queue?
- How to query with "not equal" condition in MongoDB?
- How to kill an operation in MongoDB?
- How to dump a MongoDB database?
- How to empty an array in MongoDB?
- How to implement pagination in MongoDB?
See more codes...