Redis GUI Tool with Cluster Support

Viewed 4926

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:

enter image description here

If anyone's aware of this please let me know it will be really helpful :)

Thank You

1 Answers
Related