“So klonen Sie Datenbanken auf MongoDB -Atlas” Code-Antworten

MongoDB -Klondatenbank

# 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

So klonen Sie Datenbanken auf MongoDB -Atlas

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

# Restore the db with the new name
# all'interno di dump ci saranno tutti i dump di ogni database
# lo specifico db lo raggiungi tramite ./dump/{db_name}
# se non hai user e psw ---> mongodb://localhost:port -d nome_db ./dump/{db_name}
mongorestore mongodb://user:pwd@localhost -d new_name ./dump/old_name

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

Tommaso Amadori

Ähnliche Antworten wie “So klonen Sie Datenbanken auf MongoDB -Atlas”

Fragen ähnlich wie “So klonen Sie Datenbanken auf MongoDB -Atlas”

Weitere verwandte Antworten zu “So klonen Sie Datenbanken auf MongoDB -Atlas” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen