skip to Main Content

Cannot connect to redis using spring and lettuce

I am struggling to find what could be wring here; need help. I am using spring-data-redis 2.4.1 RedisStandaloneConfiguration redisStandaloneConfiguration = new RedisStandaloneConfiguration() redisStandaloneConfiguration.setHostname(hostname) redisStandaloneConfiguration.setPort(6379) redisStandaloneConfiguration.setPassword("password") I then create lettuceClientConfigurationBuilder and specify clientName I then use lettuceClientConfiguration and redisStandaloneConfiguration to create…

VIEW QUESTION

org.springframework.data.redis.RedisConnectionFailureException: Could not get a resource from the pool – Debian

My cassandra docker-compose file: version: '2' services: redis-node-0: image: docker.io/bitnami/redis-cluster:latest ports: - "6370:6379" environment: - 'REDIS_PASSWORD=pass' - 'REDIS_NODES=redis-node-0 redis-node-1 redis-node-2 redis-node-3 redis-node-4 redis-node-5' redis-node-1: image: docker.io/bitnami/redis-cluster:latest ports: - "6371:6379" environment: - 'REDIS_PASSWORD=pass' - 'REDIS_NODES=redis-node-0 redis-node-1 redis-node-2 redis-node-3 redis-node-4 redis-node-5' redis-node-2:…

VIEW QUESTION
Back To Top
Search