标签:mode protect res idea serve set mod enabled 关闭
一,在安装Redis时,按步骤安装结果在启动时却提示找不到redis.conf配置文件,试过更改redis.conf的路径发现都不行,
之后干脆放在Redis的bi目录下跟redis-server在同一目录下,在启动时直接输入
[root@zzj001 bin]# ./redis-server redis.conf
便可以,输入简捷又解决问题。
二,当用IDEA连接Redis时,报错:
DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified,
按照网上在redis.conf设置protected-mode no 关闭保护模式也无效,
后来输入命令:
127.0.0.1:6379> config set requirepass 123456
OK
127.0.0.1:6379>
然后在application.properties添加配置:
spring.redis.password=123456
问题解决。
标签:mode protect res idea serve set mod enabled 关闭
原文地址:https://www.cnblogs.com/zzjlxy-225223/p/11141179.html