Use following command to generate archive of mongodb dump database.
mongodump --db <database_name> --gzip --archive=./dump
Use following command to generate json of mongodb dump database.
mongodump -d <database_name -o ./dump
Use following command to import archive of mongodb dump into database.
mongorestore --gzip --archive=./dump
Hope it helps you.
😊
Top comments (0)