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
>
转载于:https://blog.51cto.com/zliang90/1250158