Springboot连接Redis报错

【报错】DENIED Redis is running in protected mode because protected mode is enabled

原因:Redis protected-mode 是3.2 之后加入的新特性,在Redis.conf的注释中,我们可以了解到,他的具体作用和启用条件链接redis 时只能通过本地localhost (127.0.0.1)这个来链接,而不能用网络ip(192.168…)这个链接,问题然如果用网络ip 链接会报以上错误。

1.将bind注释
Springboot连接Redis报错_第1张图片

2.将保护模式修改为No(默认为Yes)
Springboot连接Redis报错_第2张图片

3.重新启动redis服务:redis-server redis.conf

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