Openshift - 如何运行mongoexport来导出mongodb集合

时间:2013-10-07 09:43:21

标签: mongodb openshift

我在Openshift上使用MongoDB作为我的应用程序。但我无法找到数据库文件。如果我使用mongoexport命令保存那些文件(我知道--out选项)。 mongoexport util在哪里存在?而且我无法在openshift上成功运行mongoexport。

有人可以帮我吗?

1 个答案:

答案 0 :(得分:3)

首先转到您的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了解更多选项。