redis用户验证

2021/7/5 19:19:45

本文主要是介绍redis用户验证,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1配置密码认证功能

vim /opt/redis_6379/conf/redis_6379.conf

requirepass 123456

 

2使用密码登陆

方式1:

[root@elk101 ~]# redis-cli
127.0.0.1:6379> set k1 v1
(error) NOAUTH Authentication required.
127.0.0.1:6379> AUTH 123456
OK
127.0.0.1:6379> set k1 v1
OK
127.0.0.1:6379> KEYS *
1) "k1"

 

方式2:

[root@elk101 ~]# redis-cli -a '123456' get k1
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
"v1"

 



这篇关于redis用户验证的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程