我有一个在Windows 10机器上运行的spring boot rest服务,我有一个在Docker容器上运行的Redis。现在,我希望我的Spring Boot连接到redis容器,但是,它总是给我以下错误:
java.net.UnknownHostException: redis
我的 application.properties 包含以下内容:
# Set Redis server and Jedis settings
spring.redis.host = redis
spring.redis.port = 6379
spring.redis.password = test123
spring.jedis.connection.timeout = 60
这是我的 docker-compose.yml :
version: '2'
networks:
app-tier:
driver: bridge
services:
redis:
image: 'bitnami/redis:latest'
container_name: 'redis-cache'
environment:
- REDIS_PASSWORD=test123
- REDIS_DISABLE_COMMANDS=FLUSHDB,FLUSHALL
labels:
kompose.service.type: nodeport
ports:
- '6379:6379'
volumes:
- 'redis_data:/bitnami/redis'
networks:
- app-tier
volumes:
redis_data:
driver: local
答案 0 :(得分:0)
请在application.properties中设置spring.redis.host = localhost。
由于当前值集为'redis',因此应用程序无法找到该主机,因此您将收到unknownhost异常。