TypeError: db.addUser is not a function : @(shell):1:1 ——mongoDB创建新用户名密码的方法...
生活随笔
收集整理的這篇文章主要介紹了
TypeError: db.addUser is not a function : @(shell):1:1 ——mongoDB创建新用户名密码的方法...
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
不多說,舊版本使用
db.addUser("root","root")
新版本使用這句會(huì)出現(xiàn)這個(gè)錯(cuò)誤提示
TypeError: db.addUser is not a function : @(shell):1:1
新版本用的是
db.createUser(??{
????user:?"test",
????pwd:?"test",
????roles:?[?{?role:?"userAdmin",?db:?"test"?}?]
??}
)
?
轉(zhuǎn)載于:https://www.cnblogs.com/wzlblog/p/6371069.html
總結(jié)
以上是生活随笔為你收集整理的TypeError: db.addUser is not a function : @(shell):1:1 ——mongoDB创建新用户名密码的方法...的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Electron】Electron开发
- 下一篇: TP框架中的A方法和R方法