1.在创建用户之前,我们首先应该启动mongodb的用户验证功能,否则建立用户是没有意义的!
2.使用
//这个123用户拥有test1数据库的数据库管理员权限,拥有test2数据库的读取权限 db.createUser({user:"123",pwd:"123",roles:[{role:"dbAdmin",db:"test1"},{role:"read",db:"test2"}]});