0

I am using MongoDB with RockMongo and I want to have the authentication activated. How to "turn it on" or activate it in RockMongo?

4

2 に答える 2

1

にはいくつかの設定がありますconfig.php

//$MONGO["servers"][$i]["mongo_db"] = "MONGO_DATABASE";//default mongo db to connect, works only if mongo_auth=false
//$MONGO["servers"][$i]["mongo_user"] = "MONGO_USERNAME";//mongo authentication user name, works only if mongo_auth=false
//$MONGO["servers"][$i]["mongo_pass"] = "MONGO_PASSWORD";//mongo authentication password, works only if mongo_auth=false
$MONGO["servers"][$i]["mongo_auth"] = false;//enable mongo authentication?

で「mongo 認証」をオンにするか$MONGO["servers"][$i]["mongo_auth"] = true、他の 3 つのオプションでデフォルトを設定できます。

http://rockmongo.com/wiki/configuration?lang=en_us#%23%23%23%23+mongo_db+%0Dのドキュメントも参照してください。

于 2012-11-12T14:34:37.970 に答える