我正在openshift上为我的应用程序使用mongodb。但我找不到数据库文件。如果我使用mongoexport命令保存这些文件(我知道--out选项)。MongoExport Util在哪里?我无法在openshift上成功运行mongoexport。
有人能帮我吗?

最佳答案

首先转到你的repo文件夹。

cd app-root/repo/

然后在mongoexport命令下运行。
mongoexport --host hostname --port port --authenticationDatabase admin --username admin --password password --db test --collection collection --out collection.json

当您指定存在于不同数据库中的用户名和密码时,必须选择--authenticationDatabase
Refer this documentation了解更多选项。

关于mongodb - Openshift - 如何运行mongoexport来导出mongodb集合,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19221503/

10-09 18:39