mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
feat: add Redis username support (#11608)
### What problem does this PR solve? Support for Redis 6+ ACL authentication (username) close #11606 ### Type of change - [x] New Feature (non-breaking change which adds functionality) - [x] Documentation Update
This commit is contained in:
@ -38,6 +38,7 @@ oceanbase:
|
|||||||
port: 2881
|
port: 2881
|
||||||
redis:
|
redis:
|
||||||
db: 1
|
db: 1
|
||||||
|
username: ''
|
||||||
password: 'infini_rag_flow'
|
password: 'infini_rag_flow'
|
||||||
host: 'localhost:6379'
|
host: 'localhost:6379'
|
||||||
task_executor:
|
task_executor:
|
||||||
|
|||||||
@ -38,6 +38,7 @@ oceanbase:
|
|||||||
port: ${OCEANBASE_PORT:-2881}
|
port: ${OCEANBASE_PORT:-2881}
|
||||||
redis:
|
redis:
|
||||||
db: 1
|
db: 1
|
||||||
|
username: '${REDIS_USERNAME:-}'
|
||||||
password: '${REDIS_PASSWORD:-infini_rag_flow}'
|
password: '${REDIS_PASSWORD:-infini_rag_flow}'
|
||||||
host: '${REDIS_HOST:-redis}:6379'
|
host: '${REDIS_HOST:-redis}:6379'
|
||||||
user_default_llm:
|
user_default_llm:
|
||||||
|
|||||||
@ -89,6 +89,8 @@ RAGFlow utilizes MinIO as its object storage solution, leveraging its scalabilit
|
|||||||
|
|
||||||
- `REDIS_PORT`
|
- `REDIS_PORT`
|
||||||
The port used to expose the Redis service to the host machine, allowing **external** access to the Redis service running inside the Docker container. Defaults to `6379`.
|
The port used to expose the Redis service to the host machine, allowing **external** access to the Redis service running inside the Docker container. Defaults to `6379`.
|
||||||
|
- `REDIS_USERNAME`
|
||||||
|
Optional Redis ACL username when using Redis 6+ authentication.
|
||||||
- `REDIS_PASSWORD`
|
- `REDIS_PASSWORD`
|
||||||
The password for Redis.
|
The password for Redis.
|
||||||
|
|
||||||
@ -160,6 +162,13 @@ If you cannot download the RAGFlow Docker image, try the following mirrors.
|
|||||||
- `password`: The password for MinIO.
|
- `password`: The password for MinIO.
|
||||||
- `host`: The MinIO serving IP *and* port inside the Docker container. Defaults to `minio:9000`.
|
- `host`: The MinIO serving IP *and* port inside the Docker container. Defaults to `minio:9000`.
|
||||||
|
|
||||||
|
### `redis`
|
||||||
|
|
||||||
|
- `host`: The Redis serving IP *and* port inside the Docker container. Defaults to `redis:6379`.
|
||||||
|
- `db`: The Redis database index to use. Defaults to `1`.
|
||||||
|
- `username`: Optional Redis ACL username (Redis 6+).
|
||||||
|
- `password`: The password for the specified Redis user.
|
||||||
|
|
||||||
### `oauth`
|
### `oauth`
|
||||||
|
|
||||||
The OAuth configuration for signing up or signing in to RAGFlow using a third-party account.
|
The OAuth configuration for signing up or signing in to RAGFlow using a third-party account.
|
||||||
|
|||||||
@ -86,6 +86,9 @@ class RedisDB:
|
|||||||
"db": int(self.config.get("db", 1)),
|
"db": int(self.config.get("db", 1)),
|
||||||
"decode_responses": True,
|
"decode_responses": True,
|
||||||
}
|
}
|
||||||
|
username = self.config.get("username")
|
||||||
|
if username:
|
||||||
|
conn_params["username"] = username
|
||||||
password = self.config.get("password")
|
password = self.config.get("password")
|
||||||
if password:
|
if password:
|
||||||
conn_params["password"] = password
|
conn_params["password"] = password
|
||||||
|
|||||||
Reference in New Issue
Block a user