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

Wie speichere ich eine gesamte MongoDB-Datenbank als Text/json?

Verwenden von mongodump und bsondump :

Schritt 1 Sichern Sie die gesamte Datenbank in BSON-Dateien:

 mongodump --db db1

Schritt 2 Konvertieren Sie jede BSON-Datei in eine JSON-Datei:

for f in dump/db1/*.bson; do bsondump "$f" > "$f.json"; done

Hoffe es hilft!