redis记录二坑
Posted zzjlxy-225223
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis记录二坑相关的知识,希望对你有一定的参考价值。
一,在安装Redis时,按步骤安装结果在启动时却提示找不到redis.conf配置文件,试过更改redis.conf的路径发现都不行,
之后干脆放在Redis的bi目录下跟redis-server在同一目录下,在启动时直接输入
[[email protected] 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
问题解决。
以上是关于redis记录二坑的主要内容,如果未能解决你的问题,请参考以下文章