Our project is in need of a GUI tool for monitoring and managing a Redis cluster.
I could not find one that has support for connecting to a redis cluster.
For example, I ran a redis cluster and a redis insight gui locally by docker-compose
successfully:
services:
redis-cluster:
image: "grokzen/redis-cluster:latest"
ports:
- "7000-7007:7000-7007"
- "5000-5002:5000-5002"
environment:
IP: "0.0.0.0"
redisinsight:
image: "redislabs/redisinsight:latest"
ports:
- 8001:8001
volumes:
- redisinsight:/db
But if I try to connect to the redis cluster by redis insight gui then it gives error:
If anyone's aware of this please let me know it will be really helpful :)
Thank You