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 .