我正在尝试将mongo数据库迁移到DigitalOcean服务器上。我已将文件转储到本地系统(mac)。另外,我试过使用SCP文件传输(errored)和mongorestore。如果有人有一个很好的例子如何做到这一点,将是非常感谢。
最佳答案
蒙哥杜普
mongodump --host <HOST_DETAILS> --username <USERNAME> --password <PASSWORD> --authenticationDatabase admin --db <DATABASE>
可以使用
--gzip
中的mongodump
启用压缩蒙哥雷斯托尔
mongorestore --host <HOST_DETAILS> --username <USERNAME> --password <PASSWORD> --db <database> --authenticationDatabase admin --dir <PATH>
在
--gzip
中包含mongorestore
以从压缩转储还原关于linux - 使用mongodump和mongorestore的MongoDB DigitalOcean,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50608837/