我在Openshift上使用MongoDB作为我的应用程序。但我无法找到数据库文件。如果我使用mongoexport命令保存那些文件(我知道--out选项)。 mongoexport util在哪里存在?而且我无法在openshift上成功运行mongoexport。
有人可以帮我吗?
答案 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了解更多选项。