将身份验证添加到mongod.conf文件

时间:2016-02-07 08:22:27

标签: mongodb database

如何在我的mongod.conf文件中添加身份验证,以便每次启动$this->slimObj->add(function ($request, $response, $next) { $response = $response->withHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, DELETE'); $response = $next ($request, $response); return $response; }); 守护程序时都不必指定run mongod --auth

1 个答案:

答案 0 :(得分:0)

编辑/etc/mongod.conf

添加或查找security:部分 并在其下方添加authorization: enabled,如下所示:

security:
  authorization: enabled

在没有--auth

的情况下保存并重新启动守护程序