📜  mongodb 重命名数据库 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:06.498000             🧑  作者: Mango

代码示例2
# 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

# Then run these commands in your mongodb shell
use old_name
db.dropDatabase()