redis的密码设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis的密码设置相关的知识,希望对你有一定的参考价值。
若连接redis时报错:Redis (error) NOAUTH Authentication required.
,通常是由于redis设了密码但连接时却未提供密码引起的。
设置密码:
编辑redis配置文件redis.conf
,(在/etc/redis/redis.conf
或/etc/redis.conf
)
加入:
requirepass yourpassword
然后 systemctl restart redis
redis-cli 中使用密码:
$ redis-cli
127.0.0.1:6379> auth yourpassword
OK
127.0.0.1:6379>
以上是关于redis的密码设置的主要内容,如果未能解决你的问题,请参考以下文章