DEV Community

Discussion on: How to backup MongoDB every night in NodeJS

Collapse
 
khue20 profile image
khue20

Why use gzip, so difficult to me when I want to restore, Please tell me how to extract gzip when i want to restore

Collapse
 
blindman139 profile image
Blindman139 • Edited

Use of different flags along with how to restore...

mongodump -d="ecommerce" -o="./bkp"
mongorestore --nsInclude="ecommerce." --nsFrom="ecommerce." --nsTo="ecrms.*" "./bkp"

mongodump -d="ecommerce" --gzip -o="./bkp"
mongorestore --nsInclude="ecommerce." --nsFrom="ecommerce." --nsTo="ecrms.*" --gzip "./bkp"

mongodump -d="ecommerce" --archive="./bkp1.gz"
mongorestore --nsInclude="ecommerce." --nsFrom="ecommerce." --nsTo="ecrms.*" --archive="./bkp1.gz"

mongodump -d="ecommerce" --gzip --archive="./bkp1.gz"
mongorestore --nsInclude="ecommerce." --nsFrom="ecommerce." --nsTo="ecrms.*" --gzip --archive="./bkp1.gz"