node.js - 无法将数据添加到 MongoDB Atlas "not authorized to execute command { insert: ... }"

标签 node.js mongodb

可以使用 StringURI 连接到 MongoDB,但是如果我尝试添加架构,我会收到错误消息:

MongoDB Connected ..
{ MongoError: not authorized on admin to execute command { insert: "animals", documents: [[{isEndangered true} {dateOfEntry 2019-10-03 22:33:54.852 +0000 UTC} {_id ObjectIdHex("5d967752e762ed56dc4f1dba")} {name Red Panda} {__v 0}]], ordered: true, writeConcern: { w: "majority" }, lsid: { id: {4 [194 242 186 89 84 47 69 212 143 253 85 42 86 82 70 95]} }, txnNumber: 1.000000, $clusterTime: { clusterTime: 6743708686104920070, signature: { hash: [247 92 77 50 
194 115 41 36 114 64 156 130 20 135 223 112 71 207 137 248], keyId: 6728180188896559104.000000 } }, $db: "admin" }
    at Connection.<anonymous> (C:\Users\xxxx\Documents\04_Programmering\mongoDB_Node\node_modules\mongodb\lib\core\connection\pool.js:466:61)
    at Connection.emit (events.js:197:13)
    at processMessage (C:\Users\xxxx\Documents\04_Programmering\mongoDB_Node\node_modules\mongodb\lib\core\connection\connection.js:364:10)
    at TLSSocket.<anonymous> (C:\Users\xxxx\Documents\04_Programmering\mongoDB_Node\node_modules\mongodb\lib\core\connection\connection.js:533:15)
    at TLSSocket.emit (events.js:197:13)
    at addChunk (_stream_readable.js:288:12)
    at readableAddChunk (_stream_readable.js:269:11)
    at TLSSocket.Readable.push (_stream_readable.js:224:10)
    at TLSWrap.onStreamRead [as onread] (internal/stream_base_commons.js:150:17)
  ok: 0,
  errmsg:
   'not authorized on admin to execute command { insert: "animals", documents: [[{isEndangered true} {dateOfEntry 2019-10-03 22:33:54.852 +0000 UTC} {_id ObjectIdHex("5d967752e762ed56dc4f1dba")} {name Red Panda} {__v 0}]], ordered: true, writeConcern: { w: "majority" }, lsid: { id: {4 [194 242 186 89 84 47 69 212 143 253 85 42 86 82 70 95]} }, txnNumber: 1.000000, $clusterTime: { clusterTime: 6743708686104920070, signature: { hash: [247 92 77 50 194 115 41 36 114 64 156 130 20 135 223 112 71 207 137 248], keyId: 6728180188896559104.000000 } }, $db: "admin" }',
  code: 8000,
  codeName: 'AtlasError',
  name: 'MongoError',
  [Symbol(mongoErrorContextSymbol)]: {} }

我的连接字符串:(使用包“config”没有问题[尝试过])

{
    "mongoURI": "mongodb+srv://xxxx:xxxx@xxxx-xxxx.mongodb.net/admin?retryWrites=true&w=majority"
}

使用 Mongoose 驱动程序和连接:

mongoose
    .connect(db, { useNewUrlParser: true, useCreateIndex: true, useFindAndModify: false, useUnifiedTopology: true})
    .then(() => console.log('MongoDB Connected ..'))
    .catch(err => console.log(err));

我已经尝试过:

  • 在网络访问中将我当前的 IP 和 0.0.0.0/0 列入白名单
  • 获得两个角色的授权(AtlasAdmin 和 ReadWrite 用户,并具有正确的用户名和密码)
  • 使用连接字符串:mongodb+srv://:@xxxx-xxxxx.mongodb.net/admin?retryWrites=true&w=majority
  • 我知道 Atlas 的局限性,但我尝试简单地添加表格,如下所示:
const newAnimal = new Animal({
    name: 'Red Panda',
    isEndangered: true
});

newAnimal
    .save()
    .then(item => console.log(item))
    .catch(err => console.log(err));

这是新手,我什至不想在开始之前就退出。免费的 Atlas 帐户似乎是小型演示和学习的良好开端,无需处理连接和架构等问题。

最佳答案

错误是这样的:

MongoError: not authorized on admin to execute command { insert: ....

这意味着您正在尝试插入 admin 数据库,这是一个受限制的特殊数据库。

更改连接字符串以使用另一个数据库,例如:

"mongodb+srv://xxxx:xxxx@xxxx-xxxx.mongodb.net/test?retryWrites=true&w=majority"

以便连接到名为test 的数据库。您的插入应该可以工作。

关于node.js - 无法将数据添加到 MongoDB Atlas "not authorized to execute command { insert: ... }",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58227975/

相关文章:

javascript - Node.js 在逐行 Readline 完成后执行

angularjs - 使用 generator-sql-fullstack 在 heroku 上拒绝连接

javascript - Vue警告: Unknown custom element: <education-item> - did you register the component correctly?

Mongodb 地理空间索引,2d 与 2dsphere

mongodb - MongoTemplate 查找不返回结果

json - 对此后端堆栈的反馈

java - java中mongodb的日期查询

javascript - 将 mongodb 对象转换为 javascript 对象

node.js - Jasmine - 如何从规范覆盖范围中排除 node_modules

node.js - 通过多进程将套接字存储在Node.js中