MongoDB 如何使用 Java 驱动程序查找数据目录

发布于 2025-01-07 09:55:49 字数 164 浏览 0 评论 0原文

我正在使用只有一个节点的 MongoDB 实例。我想编写一个 Web 服务来同步数据文件并将它们压缩到备份文件夹中。

理想情况下,我会以编程方式获取数据目录的位置(而不是读取配置文件),以便我可以轻松地将其从开发计算机移植到安装路径不同的生产计算机。有没有办法使用 Java 驱动程序来做到这一点?

I am using an instance of MongoDB with just one node. I would like to write a web service that fsyncs the data files and zips them into a backup folder.

Ideally, I would get the location of the data directory programatically (rather than reading a config file) so I can easily port this from a development to a production machine, where the installation paths differ. Is there any way to do this using the Java driver?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

貪欢 2025-01-14 09:55:49

尝试使用管理员
db.runCommand({getCmdLineOpts: 1}) 如此处所述,然后使用返回的数据。

返回数据示例为

{
        "argv" : [
                "mongod",
                "--port",
                "6669",
                "--dbpath=c:\\data\\mongo2",
                "--rest"
        ],
        "parsed" : {
                "dbpath" : "c:\\data\\mongo2",
                "port" : 6669,
                "rest" : true
        },
        "ok" : 1
}

Try using use admin
db.runCommand({getCmdLineOpts: 1}) as outlined here and then playing with the returned data.

Example return data is

{
        "argv" : [
                "mongod",
                "--port",
                "6669",
                "--dbpath=c:\\data\\mongo2",
                "--rest"
        ],
        "parsed" : {
                "dbpath" : "c:\\data\\mongo2",
                "port" : 6669,
                "rest" : true
        },
        "ok" : 1
}
东走西顾 2025-01-14 09:55:49

您可以使用 mongoexport 获取数据;从生产计算机运行它并指定开发计算机的主机/端口/集合。可以使用 mongoimport 将数据导入生产机器。

You could use mongoexport to get the data; run it from the production machine and specify the host/port/collection of the development machine. The data can be imported to the production machine using mongoimport.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文