(避坑贴)SpringBoot整合Redis报错:Unable to connect to Redis

报错信息是org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is org.springframework.data.redis.connection......

相信大家肯定认为是在redis.conf配置文件处出了问题~
例如:修改bind 127.0.0.1 和 protected-mode 改为no之类的这种问题;

但是, 修改了各种各样的信息之后,发现问题并没有解决!!!
最后没有办法只能在yaml文件中看看有没有错误~
最后!!! 发现了一个最恶心人的地方,我的password没有加引号引起来!!!

(避坑贴)SpringBoot整合Redis报错:Unable to connect to Redis_第1张图片
加上之后,就直接通过了~
(避坑贴)SpringBoot整合Redis报错:Unable to connect to Redis_第2张图片

最后,希望对有需要的人有帮助~

你可能感兴趣的:(Redis,redis,spring,boot,缓存)