Connection Types
| Type | Description |
|---|---|
| Standalone | Single Redis server |
| Sentinel | Redis Sentinel for high availability |
| Cluster | Redis Cluster for horizontal scaling |
How to Add a Redis Connection
Enter Connection Details
Standalone:
- Host (required): Redis server address
- Port (required): Redis port (default: 6379)
- Master Name (required): Name of the master
- Sentinel Hosts (required): List of sentinel host:port pairs
- Cluster Nodes (required): List of cluster node host:port pairs
- Name (required): Display name for this connection
- Authentication: None or Password
- Password: Required if authentication is enabled
- TLS Enabled: Enable TLS encryption
How to Edit a Redis Connection
- Click the edit icon on the connection row
- Modify the settings
- Click Save
How to Check Health
Click the Check button to verify connectivity. A successful check shows Redis version and memory usage.How to Delete a Redis Connection
- Click the delete icon on the connection row
- Confirm the deletion
Troubleshooting
Health check shows Unhealthy
Health check shows Unhealthy
- Verify host and port are correct
- Check if password is required and correct
- Ensure network connectivity to Redis
- For TLS, verify certificates or check TLS configuration
Sentinel connection fails
Sentinel connection fails
- Verify all sentinel hosts are correct
- Check the master name matches Sentinel configuration
- Ensure sentinels are running and accessible
Cluster connection fails
Cluster connection fails
- Verify at least one cluster node is correct
- Ensure cluster is properly initialized
- Check if CLUSTER commands are enabled
FAQ
Can I connect multiple Redis instances?
Can I connect multiple Redis instances?
Yes. Add connections for different purposes (cache, sessions, queues).
Which connection type should I use?
Which connection type should I use?
- Standalone: Simple setups, development
- Sentinel: High availability with automatic failover
- Cluster: Large datasets requiring horizontal scaling
Is TLS required?
Is TLS required?
No, but recommended for production. Enable TLS for encrypted connections.