通过mongo cli打印运行时mongo配置

时间:2017-01-24 20:10:09

标签: mongodb

看着这个:How to check the current configuration of MongoDB

尝试以下方法:

  

使用admin       切换到数据库管理员   db.runCommand({getCmdLineOpts:1})       {“argv”:[“mongod”],“已解析”:{},“ok”:1}

我的function example() { showLocationDetails($('#location').val()); } $(document).ready(example); 文件:

/etc/mongod.conf

我遗失的东西?

1 个答案:

答案 0 :(得分:0)

您的mongod进程很可能未使用指定的配置文件/etc/mongod.conf运行。如果是,您应该在getCmdLineOpts()的输出中看到配置文件。例如:

{
   "argv" : [
      "/usr/bin/mongod",
      "--config",
      "/etc/mongod.conf"
   ],
   "parsed" : {
      "config" : "/etc/mongod.conf"
   }
}

有关详细信息,请参阅getCmdLineOpts command