This tutorial is a community contribution and is not supported by the Open WebUI team. It serves only as a demonstration on how to customize Open WebUI for your specific use case. Want to contribute? Check out the contributing tutorial.
🔗 Redis Websocket Support
Overview
This documentation page outlines the steps required to integrate Redis with Open WebUI for websocket support. By following these steps, you will be able to enable websocket functionality in your Open WebUI instance, allowing for real-time communication and updates between clients and your application.
When is Redis Required?
Redis serves two distinct purposes in Open WebUI, and understanding when it's required is crucial for proper deployment:
Single Instance Deployments
If you're running Open WebUI as a single instance with UVICORN_WORKERS=1 (the default), Redis is completely optional and not strictly needed. The application will function normally without it for all operations.
Multi-Worker and Multi-Instance Deployments
Redis becomes mandatory in the following scenarios:
-
Multiple Uvicorn Workers (
UVICORN_WORKERS > 1)- Running multiple worker processes on a single host
- Requires Redis to share session state and application configuration between workers
-
Multi-Node Deployments
- Kubernetes clusters with multiple pods
- Docker Swarm with multiple replicas
- Load-balanced setups with multiple Open WebUI instances
- Requires Redis to coordinate state across all instances
-
High Availability Setups
- Any deployment pattern where multiple Open WebUI processes run simultaneously
- Requires Redis for session management, websocket coordination, and state synchronization
Critical Requirement
Without Redis in multi-worker or multi-instance scenarios, you will experience:
- Session management failures across workers
- Inconsistent application state between instances
- Non-functional websocket connections
- Intermittent authentication failures
- Loss of real-time chat updates
Prerequisites
- A valid Open WebUI instance (running version 1.0 or higher)
- A Redis container (we will use
docker.io/valkey/valkey:8.0.1-alpinein this example, which is based on the latest Redis 7.x release) - Docker Composer (version 2.0 or higher) installed on your system
- A Docker network for communication between Open WebUI and Redis
- Basic understanding of Docker, Redis, and Open WebUI
Setting up Redis
To set up Redis for websocket support, you will need to create a docker-compose.yml file with the following contents:
version: '3.9'
services:
redis:
image: docker.io/valkey/valkey:8.0.1-alpine
container_name: redis-valkey
volumes:
- redis-data:/data
command: "valkey-server --save 30 1"
healthcheck:
test: "[ $$(valkey-cli ping) = 'PONG' ]"
start_period: 5s
interval: 1s
timeout: 3s
retries: 5
restart: unless-stopped
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
networks:
- openwebui-network
volumes:
redis-data:
networks:
openwebui-network:
external: true
Notes
The ports directive is not included in this configuration, as it is not necessary in most cases. The Redis service will still be accessible from within the Docker network by the Open WebUI service. However, if you need to access the Redis instance from outside the Docker network (e.g., for debugging or monitoring purposes), you can add the ports directive to expose the Redis port (e.g., 6379:6379).
The above configuration sets up a Redis container named redis-valkey and mounts a volume for data persistence. The healthcheck directive ensures that the container is restarted if it fails to respond to the ping command. The --save 30 1 command option saves the Redis database to disk every 30 minutes if at least 1 key has changed.
To create a Docker network for communication between Open WebUI and Redis, run the following command:
docker network create openwebui-network
Configuring Open WebUI
To enable Redis support in Open WebUI, you need to configure different environment variables depending on your deployment type.
Basic Configuration (All Deployments)
For all deployments using Redis (single or multi-instance), set the following base environment variable:
REDIS_URL="redis://redis-valkey:6379/0"
This variable configures the primary Redis connection for application state management, session storage, and coordination between instances.
Websocket Configuration
To enable websocket support specifically, add these additional environment variables:
ENABLE_WEBSOCKET_SUPPORT="true"
WEBSOCKET_MANAGER="redis"
WEBSOCKET_REDIS_URL="redis://redis-valkey:6379/1"
Redis Database Numbers
Notice the different database numbers (/0 vs /1) in the URLs:
REDIS_URLuses database0for general application stateWEBSOCKET_REDIS_URLuses database1for websocket-specific data
This separation helps isolate different types of data. You can use the same database number for both if preferred, but using separate databases is recommended for better organization and potential performance optimization.
Optional Configuration
REDIS_KEY_PREFIX="open-webui"
The REDIS_KEY_PREFIX allows multiple Open WebUI instances to share the same Redis instance without key conflicts. In Redis cluster mode, the prefix is formatted as {prefix}: (e.g., {open-webui}:config:*) to enable multi-key operations on configuration keys within the same hash slot.
Complete Example Configuration
Here's a complete example showing all Redis-related environment variables:
# Required for multi-worker/multi-instance deployments
REDIS_URL="redis://redis-valkey:6379/0"
# Required for websocket support
ENABLE_WEBSOCKET_SUPPORT="true"
WEBSOCKET_MANAGER="redis"
WEBSOCKET_REDIS_URL="redis://redis-valkey:6379/1"
# Optional
REDIS_KEY_PREFIX="open-webui"
Docker Run Example
When running Open WebUI using Docker, connect it to the same Docker network and include all necessary Redis variables:
docker run -d \
--name open-webui \
--network openwebui-network \
-v open-webui:/app/backend/data \
-p 3000:8080 \
-e REDIS_URL="redis://redis-valkey:6379/0" \
-e ENABLE_WEBSOCKET_SUPPORT="true" \
-e WEBSOCKET_MANAGER="redis" \
-e WEBSOCKET_REDIS_URL="redis://redis-valkey:6379/1" \
-e REDIS_KEY_PREFIX="open-webui" \
ghcr.io/open-webui/open-webui:main
Important Note on Service Names
In the examples above, we use redis://redis-valkey:6379 because:
redis-valkeyis the container name defined in the docker-compose.yml- Docker's internal DNS resolves this name to the correct IP address within the network
- This is the recommended approach for Docker deployments
Do not use 127.0.0.1 or localhost when connecting from one container to another - these refer to the container's own localhost, not the Redis container.
Multi-Worker Configuration
If you're running multiple Uvicorn workers on a single host, add this variable:
UVICORN_WORKERS="4" # Adjust based on your CPU cores
REDIS_URL="redis://redis-valkey:6379/0" # Required when UVICORN_WORKERS > 1
Critical: Redis Required for UVICORN_WORKERS > 1
If you set UVICORN_WORKERS to any value greater than 1, you must configure REDIS_URL. Failing to do so will cause:
- Session state to be lost between requests
- Authentication to fail intermittently
- Application configuration to be inconsistent
- Websockets to malfunction
Verification
Verify Redis Connection
First, confirm that your Redis instance is running and accepting connections:
docker exec -it redis-valkey valkey-cli -p 6379 ping
This command should output PONG if the Redis instance is running correctly.
Verify Open WebUI Configuration
After starting your Open WebUI instance with the proper Redis configuration, check the logs to confirm successful integration:
Check for General Redis Connection
Look for log messages indicating Redis is being used for application state:
docker logs open-webui 2>&1 | grep -i redis
Check for Websocket Redis Connection
If you have enabled websocket support, you should see this specific log message:
DEBUG:open_webui.socket.main:Using Redis to manage websockets.
To check this specifically:
docker logs open-webui 2>&1 | grep "Using Redis to manage websockets"
Verify Redis Keys
You can also verify that Open WebUI is actually writing data to Redis:
# List all Open WebUI keys
docker exec -it redis-valkey valkey-cli --scan --pattern "open-webui*"
# Or with the default Redis CLI
docker exec -it redis-valkey redis-cli --scan --pattern "open-webui*"
If Redis is configured correctly, you should see keys with your configured prefix (e.g., open-webui:session:*, open-webui:config:*).
Test Multi-Worker Setup
If you're running with UVICORN_WORKERS > 1, test that sessions persist across workers:
- Log in to Open WebUI
- Refresh the page multiple times
- You should remain logged in consistently
If you're logged out randomly or see authentication errors, Redis is likely not configured correctly.
Troubleshooting
Common Issues and Solutions
Issue: "Connection to Redis failed"
Symptoms:
- Error messages about Redis connection in logs
- Application fails to start or crashes
- Websockets don't work
Solutions:
- Verify Redis container is running:
docker ps | grep redis - Check Redis is healthy:
docker exec -it redis-valkey valkey-cli ping - Verify network connectivity:
docker network inspect openwebui-network - Ensure the
REDIS_URLuses the correct container name, not127.0.0.1orlocalhost - Check that both containers are on the same Docker network
Issue: "Session lost after page refresh" (with UVICORN_WORKERS > 1)
Symptoms:
- Users are logged out randomly
- Authentication works but doesn't persist
- Different behavior on each page refresh
Cause: REDIS_URL is not configured when using multiple workers
Solution:
Add the REDIS_URL environment variable:
REDIS_URL="redis://redis-valkey:6379/0"
Issue: "Websockets not working"
Symptoms:
- Real-time chat updates don't appear
- Need to refresh page to see new messages
- Connection errors in browser console
Solutions:
- Verify all websocket environment variables are set:
ENABLE_WEBSOCKET_SUPPORT="true"WEBSOCKET_MANAGER="redis"WEBSOCKET_REDIS_URL="redis://redis-valkey:6379/1"
- Check logs for:
DEBUG:open_webui.socket.main:Using Redis to manage websockets. - Verify Redis is accessible from Open WebUI container
Issue: "Multiple Open WebUI instances interfering with each other"
Symptoms:
- Configuration changes affect other instances
- Sessions conflict between deployments
- Unexpected behavior when running multiple Open WebUI installations
Solution:
Use different REDIS_KEY_PREFIX values for each installation:
# Instance 1
REDIS_KEY_PREFIX="openwebui-prod"
# Instance 2
REDIS_KEY_PREFIX="openwebui-dev"
Issue: "Redis memory usage growing continuously"
Symptoms:
- Redis memory usage increases over time
- Container eventually runs out of memory
Solutions:
- Configure Redis maxmemory policy:
command: "valkey-server --save 30 1 --maxmemory 256mb --maxmemory-policy allkeys-lru"
- Monitor Redis memory:
docker exec -it redis-valkey valkey-cli info memory - Clear old keys if needed:
docker exec -it redis-valkey valkey-cli FLUSHDB
Additional Resources
- Redis Documentation
- Valkey Documentation
- Docker Compose Documentation
- Open WebUI Environment Variables
- sysctl Documentation
Getting Help
If you continue to experience issues after following this guide:
- Check the Open WebUI GitHub Issues
- Review your complete configuration for typos
- Verify all containers can communicate on the Docker network
- Collect relevant logs from both Open WebUI and Redis containers
- Join the Open WebUI Discord for community support
By following these steps and troubleshooting tips, you should be able to set up Redis with Open WebUI for both application state management and websocket support, enabling reliable multi-instance deployments and real-time communication between clients and your application.