我在OS X 10.11 / 15A263e上运行mongodb 3.0.6(homebrew),无法通过ShardingTest的js代码指定非默认数据文件路径的方式。

我想避免由于某些原因弄乱符号链接或/ data中的实际数据文件,但更重要的是想学习热学方法,使该类ShardingTest下的代码起作用:

manoa:dev mike$ mongo --nodb
MongoDB shell version: 3.0.6
> var options = { shardOptions : { dbpath : "/usr/local/var/mongodb" } };
> cluster = new ShardingTest( { shards : 3 }, { other : options } );
Resetting db path '/data/db/test0'
2015-08-31T07:54:03.707-0500 E QUERY    Error: boost::filesystem::create_directory: No such file or directory: "/data/db/test0"
    at Function.MongoRunner.runMongod (src/mongo/shell/servers.js:589:13)
    at new ShardingTest (src/mongo/shell/shardingtest.js:259:36)
    at (shell):1:11 at src/mongo/shell/servers.js:589


looked over this helpful post,但是我的JS太弱了,无法从那里的帮助中概括出如何设置dbpath以及哪些参数将覆盖默认路径。

有人可以提出一种方法来调试此脚本或提供实际语法以将我的首选db路径提供给ShardingTest函数吗?

最佳答案

MongoRunner.dataPathused to construct db paths

this.getDBPaths = function() {
    return _alldbpaths.map((path) => {
        return MongoRunner.dataPath + path;
    });
};


因此,您可以将其设置为所需的任何目录,例如:

// don't forget the trailing slash
MongoRunner.dataPath = '/home/your_user/data/db/'

关于javascript - ShardingTest()可以将非默认dbpath传递给mongod吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32311976/

10-10 02:45