“baza danych klonów MongoDB” Kod odpowiedzi

Baza danych klonów MongoDB na maszynę lokalną

# Dump remote database to a local folder
mongodump --uri "mongodb+srv://username:password@host/mydb" --out ./myfolder

# Restore the database from the folder to localhost
mongorestore --port 27017 ./myfolder

# (Restore back to the remote)
mongorestore --host=example.com --port=27017 -u username -p password --db mydb ./myFolder
garzj

baza danych klonów MongoDB

# Dump db to a local folder
mongodump mongodb://user:pwd@localhost/old_name -o ./dump 

# Restore the db with the new name
mongorestore mongodb://user:pwd@localhost -d new_name ./dump/old_name

# Try this flag if you get an authentication error
--authenticationDatabase admin
garzj

Baza danych kopii Mongo

Before MongoDB version 4.2
source_db.copyDatabase('destination_db')

After MongoDB version 4.2
mongodump --archive="mongodump-source-db" --db=source_db
mongorestore --archive="mongodump-source-db" --nsFrom='source_db.*' --nsTo='destination_db.*'

Or,

mongodump --archive --db=source_db | mongorestore --archive  --nsFrom='source_db.*' --nsTo='destination_db.*'
Lucky Lobster

Odpowiedzi podobne do “baza danych klonów MongoDB”

Pytania podobne do “baza danych klonów MongoDB”

Więcej pokrewnych odpowiedzi na “baza danych klonów MongoDB” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu