How can I export my whole database using command?
I have tried to export collections from mongoDB compass and it's works.
But I want to export whole DB using command.
How can I export my whole database using command?
I have tried to export collections from mongoDB compass and it's works.
But I want to export whole DB using command.
I got an answer. We can do export & import whole mongodb database with command from CMD.
1.Open CMD run as administrator.
2.Go to your mongo's bin directory. ex.C:\Program Files\MongoDB\Server\4.0\bin
3.Hit the command for export database.
mongodump --archive=DBName.gz --gzip --db DBName
4.Hit the command to restore database.
mongorestore --gzip --archive=DBName.gz --db DBName