Redis Issues
Troubleshooting Redis connection problems.
Connection Errors
Cannot Connect to Redis
Check:
- Redis is running:
redis-cli ping - Correct host and port in
.env - Network connectivity
- Firewall rules
Solutions:
- Start Redis:
redis-serverordocker compose up redis - Verify
REDIS_HOSTandREDIS_PORT - Test connection:
redis-cli -h localhost -p 6379 ping - Check authentication if password set
Redis Not Required
Note: TMA Cloud works without Redis!
- Caching will be disabled
- Real-time events won't work
- Performance may be slower
- App will function normally
Docker Redis
Container Not Starting
Check:
- Docker compose logs:
docker compose logs redis - Port conflicts
- Volume mounts
Solutions:
- Check logs for errors
- Verify port 6379 is available
- Restart container:
docker compose restart redis
Related Topics
- Environment Setup - Redis configuration
- Architecture - System architecture