Node.js使用MongoDB3.4+Access control is not enabled for the database解决方案

Posted 刻刻帝丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js使用MongoDB3.4+Access control is not enabled for the database解决方案相关的知识,希望对你有一定的参考价值。

tip:有问题或者需要大厂内推的+我脉脉哦:丛培森 ٩( ‘ω’ )و

今天使用MongoDB时遇到了一些问题

建立数据库连接时出现了warnings

出现这个警告的原因是新版本的MongDB为了让我们创建一个安全的数据库
必须要进行验证
后来在外网找到了答案

解决方案如下:

创建管理员

use admin
db.createUser(
  
    user: "userAdmin", //用户名
    pwd: "123", //密码
    roles: [  role: "userAdminAnyDatabase", db: "admin"  ] //权限
  
)

重启MongoDB服务器

mongod --auth --port 27017 --dbpath <关联路径>

(端口默认就是27017可以不指定)

终端最后输出"[initandlisten] waiting for connections on port 27017",
启动完成

连接并认证

mongo --port 27017 -u "userAdmin" -p "123" --authenticationDatabase "admin"

添加额外权限用户

use test
db.createUser(
  
    user: "tester",
    pwd: "123",
    roles: [  role: "readWrite", db: "test" ,
              role: "read", db: "reporting"  ]
  
)
mongo --port 27017 -u "myTester" -p "xyz123" --authenticationDatabase "test"

MongoDB更新了,使用mongoose也不能简单的建立连接了
必须要添加必要参数

var mongoose = require('mongoose');
var db = mongoose.createConnection('localhost', 'test', 27017, user: 'tester', pass: '123');

主页传送门

以上是关于Node.js使用MongoDB3.4+Access control is not enabled for the database解决方案的主要内容,如果未能解决你的问题,请参考以下文章

node.js搭建代理服务器请求数据

mongodb3.4.0复制集的搭建

mongodb3.4字符类型的字段求和

mongodb3.4 Sharded cluster

mongodb3.4.4安装

mongoDB3.4的sharding集群搭建及JavaAPI的简易使用