发布于 2015-09-14 14:58:38 | 105 次阅读 | 评论: 0 | 来源: 网络整理

getCmdLineOpts

The getCmdLineOpts command returns a document containing command line options used to start the given mongod:

{ getCmdLineOpts: 1 }

This command returns a document with two fields, argv and parsed. The argv field contains an array with each item from the command string used to invoke mongod. The document in the parsed field includes all runtime options, including those parsed from the command line and those specified in the configuration file, if specified.

Consider the following example output of getCmdLineOpts:

{
        "argv" : [
               "/usr/bin/mongod",
               "--config",
               "/etc/mongodb.conf",
               "--fork"
        ],
        "parsed" : {
               "bind_ip" : "127.0.0.1",
               "config" : "/etc/mongodb/mongodb.conf",
               "dbpath" : "/srv/mongodb",
               "fork" : true,
               "logappend" : "true",
               "logpath" : "/var/log/mongodb/mongod.log",
               "quiet" : "true"
        },
        "ok" : 1
}

http://docs.mongodb.org/manual/administration/import-export/

最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务