mongodb 备份与恢复

备份

mongodump -d dbname -o backup

例如

mongodump -d student -o backup

恢复

mongorestore -d dbname -o backup/dbname

例如

mongorestore -d student -o backup/student

 

原文地址:https://www.cnblogs.com/Azurewing/p/4109036.html