Mongodb啓用認證


1、添加管理用戶admin

# mongo

> use admin

> db.addUser('admin','123456')



2、啓用認證

# cat /etc/mongodb.conf

fork = true

bind_ip = 192.168.1.10

port = 27017

quiet = true

dbpath = /data/mongodb

logpath = /tmp/mongod.log

logappend = true

journal = true

auth=true    #開啓認證

   

3、重啓mongod進程

# mongo 192.168.1.10

MongoDB shell version: 2.4.3

connecting to: 192.168.1.10/test

>

>

> use admin

switched to db admin

>

> show collections

Mon May  6 17:18:36.971 JavaScript execution failed: error: {

       "$err" : "not authorized for query on admin.system.namespaces",

       "code" : 16550

} at src/mongo/shell/query.js:L128

>

> db.auth('admin','123456')

1

>

> show collections

system.indexes

system.users

>

> show dbs

admin   0.203125GB

local   0.078125GB

monitor_log     0.203125GB

test    0.203125GB

>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章