CCE 部署 Mongodb

环境变量

MONGO_INITDB_ROOT_USERNAME    admin
MONGO_INITDB_ROOT_PASSWORD    admin

CCE 部署 Mongodb_第1张图片

数据存储

主机路径 (HostPath):/xxx/app/mongodb/db 

挂载路径:/data/db

CCE 部署 Mongodb_第2张图片

进入mongo容器,新增用户并赋予权限

CCE 部署 Mongodb_第3张图片

 参考如下:

[root@192 app]# docker exec -it b3b7e0dc25ee bash
root@b3b7e0dc25ee:/# mongo
MongoDB shell version v4.4.8
connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { "id" : UUID("xxx-xxxx-xxxx-xxxx-xxx") }
MongoDB server version: 4.4.8
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
        https://docs.mongodb.com/
Questions? Try the MongoDB Developer Community Forums
        https://community.mongodb.com
> use admin
switched to db admin
> db.auth("admin","admin")
1
> show dbs
admin      0.000GB
config     0.000GB
test  0.000GB
local      0.000GB
> use test
switched to db test
> db.createUser({user: "admin", pwd: "admin", roles: [{ role: "dbOwner", db: "test" }]})
Successfully added user: {
        "user" : "admin",
        "roles" : [
                {
                        "role" : "dbOwner",
                        "db" : "test"
                }
        ]
}
> show users
{
        "_id" : "test.admin",
        "userId" : UUID("xxx-xxxx-xxxx-xxxx-xxx"),
        "user" : "admin",
        "db" : "test",
        "roles" : [
                {
                        "role" : "dbOwner",
                        "db" : "test"
                }
        ],
        "mechanisms" : [
                "SCRAM-SHA-1",
                "SCRAM-SHA-256"
        ]
}
> exit
bye
root@b3b7e0dc25ee:/# 

你可能感兴趣的:(CCE 部署 Mongodb)