> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lwops.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 8.9. MongoDB

### 8.9.1. 配置添加用户

```text theme={null}
## 登录mogodb
mongo --host 127.0.0.1
## 使用数据库
Use admin
## 创建用户库管理员
db.createUser({user: "admin",pwd: "123456",roles: [{ role: "root", db: "admin"}]})
##连接测试
Db.auth("zabbix","passw0rd")
##返回1代表可登陆
```

### 8.9.2. 添加监控

![8.9. MongoDB 操作截图 1](https://lwweb.oss-cn-shenzhen.aliyuncs.com/docs/images/yuque/mongodb/image-01.png)
