无法在MongoDB中创建新用户

时间:2015-11-19 19:22:40

标签: node.js mongodb mongodb-query

我按照本指南安装了mongodb

https://www.digitalocean.com/community/tutorials/how-to-install-mongodb-on-ubuntu-14-04

但是我不知道如何获取管理员用户/通行证甚至创建它。

db.createUser { user: "username",pwd: "monkey123",roles: [{ role: "readWrite", db: "0" } ]}

并获取

2015-11-19T14:18:52.867-0500 E QUERY    SyntaxError: Unexpected token      {

我按照mongo文档进行操作

TypeError: Property 'addUser' of object 0 is not a function

我想要的只是获取管理员用户/通行证或创建我自己的用户,这样我就可以将nodebb论坛应用程序连接到mongodb。

1 个答案:

答案 0 :(得分:2)

Traceback (most recent call last):
  File "C:\Users\sony\Desktop\Grader.py", line 2, in <module>
    if int(a)<5:
ValueError: invalid literal for int() with base 10: 'h'

您错过了db.createUser({user: "username", pwd: "monkey123", roles: [{role: "readWrite", db: "0"}]});