springboot 整合redis报错

org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is org.springframework.data.redis.connection.PoolException: Could not get a resource from the pool; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to 127.0.0.1

springboot整合redis报错解决方式:

1.首先仔细的看一遍自己的 yml 配置文件,看看地址,端口是不是错了

2.查看服务器端口是否放开

3.去liunx上找到redis的安装目录,使用 vim 进入到 redis.conf 中然后 输入/bind 127.0.0.1 将该地址改成0.0.0.0

你可能感兴趣的:(java,redis)