Answers for "mongodb hot backup"

1

mongodb hot backup

// Lock The FileSytem
// https://docs.mongodb.com/manual/reference/method/db.fsyncLock/
db.fsyncLock()

// then zip the data directory, your data directory might be different
// compressing may take a long time, so just zip it
tar -cvf ~/mongo-backup.tar /var/lib/mongodb

// Then release the filesystem lock
db.fsyncUnlock()
Posted by: Guest on February-02-2022
0

take db backup mongodb

mongodump --collection=myCollection --db=test
Posted by: Guest on November-17-2020
0

take db backup mongodb

mongodump --host=mongodb1.example.net --port=3017 --username=user --password="pass" --out=/opt/backup/mongodump-2013-10-24
Posted by: Guest on November-17-2020
-1

take db backup mongodb

mongodump --out=/data/backup/
Posted by: Guest on November-17-2020

Browse Popular Code Answers by Language