Loading

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> 
posted @ 2019-01-06 20:48  dylanchu  阅读(181)  评论(0编辑  收藏  举报