skip to Main Content

RedisInsight on Docker and Redis on Docker: Could not connect: Error 99 connecting to localhost:6379. Cannot assign requested address

Based on this tutorial https://www.youtube.com/watch?v=XrFeRwJjWHI , I tried running Redis in Docker. File docker-compose.yml version: "3.8" services: redis: image: redis volumes: - ./data:/data ports: - 6379:6379 docker pull redis docker-compose up docker-compose up -d docker container ls telnet localhost 6379…

VIEW QUESTION

Spring Data Redis, Expiring and Redis Cluster

I have an app using Spring Boot 2.2.6.RELEASE (spring-boot-starter-data-redis) Jedis 3.1.0. I've have a Redis 5.0.7 Cluster of 6 nodes: 3 masters and 3 slaves with replication 127.0.0.1:7000-7005 (just exemplary values). I've configured my app this way: @Configuration @EnableRedisRepositories(basePackages =…

VIEW QUESTION
Back To Top
Search