mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
fix openim config mongo passwd env
Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
This commit is contained in:
parent
e0244d9ca7
commit
b17b364b02
@ -304,8 +304,10 @@ This section involves setting up MongoDB, including its port, address, and crede
|
|||||||
| -------------- | -------------- | ----------------------- |
|
| -------------- | -------------- | ----------------------- |
|
||||||
| MONGO_PORT | "27017" | Port used by MongoDB. |
|
| MONGO_PORT | "27017" | Port used by MongoDB. |
|
||||||
| MONGO_ADDRESS | [Generated IP] | IP address for MongoDB. |
|
| MONGO_ADDRESS | [Generated IP] | IP address for MongoDB. |
|
||||||
| MONGO_USERNAME | [User Defined] | Username for MongoDB. |
|
| MONGO_USERNAME | [User Defined] | Admin Username for MongoDB. |
|
||||||
| MONGO_PASSWORD | [User Defined] | Password for MongoDB. |
|
| MONGO_PASSWORD | [User Defined] | Admin Password for MongoDB. |
|
||||||
|
| MONGO_OPENIM_PASSWORD | [User Defined] | OpenIM Username for MongoDB. |
|
||||||
|
| MONGO_OPENIM_PASSWORD | [User Defined] | OpenIM Password for MongoDB. |
|
||||||
|
|
||||||
### 2.8. <a name='TencentCloudCOSConfiguration'></a>Tencent Cloud COS Configuration
|
### 2.8. <a name='TencentCloudCOSConfiguration'></a>Tencent Cloud COS Configuration
|
||||||
|
|
||||||
|
@ -78,8 +78,8 @@ func buildMongoURI() string {
|
|||||||
return config.Config.Mongo.Uri
|
return config.Config.Mongo.Uri
|
||||||
}
|
}
|
||||||
|
|
||||||
username := os.Getenv("MONGO_USERNAME")
|
username := os.Getenv("MONGO_OPENIM_USERNAME")
|
||||||
password := os.Getenv("MONGO_PASSWORD")
|
password := os.Getenv("MONGO_OPENIM_PASSWORD")
|
||||||
address := os.Getenv("MONGO_ADDRESS")
|
address := os.Getenv("MONGO_ADDRESS")
|
||||||
port := os.Getenv("MONGO_PORT")
|
port := os.Getenv("MONGO_PORT")
|
||||||
database := os.Getenv("MONGO_DATABASE")
|
database := os.Getenv("MONGO_DATABASE")
|
||||||
|
@ -35,8 +35,8 @@ docker run -d \
|
|||||||
-e MONGO_INITDB_ROOT_USERNAME=${OPENIM_USER} \
|
-e MONGO_INITDB_ROOT_USERNAME=${OPENIM_USER} \
|
||||||
-e MONGO_INITDB_ROOT_PASSWORD=${PASSWORD} \
|
-e MONGO_INITDB_ROOT_PASSWORD=${PASSWORD} \
|
||||||
-e MONGO_INITDB_DATABASE=openIM \
|
-e MONGO_INITDB_DATABASE=openIM \
|
||||||
-e MONGO_USERNAME=${OPENIM_USER} \
|
-e MONGO_OPENIM_USERNAME=${OPENIM_USER} \
|
||||||
-e MONGO_PASSWORD=${PASSWORD} \
|
-e MONGO_OPENIM_PASSWORD=${PASSWORD} \
|
||||||
--restart always \
|
--restart always \
|
||||||
mongo:6.0.2 --wiredTigerCacheSizeGB 1 --auth
|
mongo:6.0.2 --wiredTigerCacheSizeGB 1 --auth
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user