MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

MongoDb:Wie importiere ich Dump-Daten aus einer .gz-Datei?

Dump-Befehl:

mongodump --host localhost:27017 --gzip --db Alex --out ./testSO

Wiederherstellungsbefehl:

mongorestore --host localhost:27017 --gzip --db Alex ./testSO/Alex

Funktioniert einwandfrei!

Bei Verwendung des Archivs:

Dump-Befehl:

mongodump --host localhost:27017 --archive=dump.gz --gzip --db Alex

Wiederherstellungsbefehl:

mongorestore --host localhost:27017 --gzip --archive=dump.gz --db Alex

Ein anderer Datenbankname oder Sammlungsname wird nicht unterstützt. Für weitere Informationen .