0

我们使用 C++ mongoDB 驱动程序的应用程序要求配置文件选项 directoryperdb 为 true。如何测试当前的 mondod 实例是否将此设置为 true?

4

2 回答 2

1

1) 从 mongo shell 运行,db.serverCmdLineOpts() // 检查目录 perdb

2)转到mongodb存储目录,检查每个数据库是否有一个文件夹(管理员文件夹、本地文件夹或您创建的任何其他数据库文件夹)

于 2013-05-27T00:59:29.490 回答
0

在 C++ 中

mongo::BSONObj options;
client_connection.runCommand("admin",BSON ( "getCmdLineOpts" << 1), options);
bool directoryperdb = options["parsed"]["directoryperdb"].boolean();
于 2013-05-27T17:44:02.403 回答