2024-10-10 12:26Full Stack
进入mongo
mongo
authentication
// 使用root用户认证
db.auth('root','root')
查看用户
show users
创建用户
// 切换到对应库
use myDatabase
// 创建用户
db.createUser({
user: 'admin',
pwd: 'admin', // 或使用更安全的方式生成密码,例如:Prompt for password
roles: [
{ role: 'readWrite', db: 'myDatabase' }
]
})