博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Redis 密码认证
阅读量:6551 次
发布时间:2019-06-24

本文共 1216 字,大约阅读时间需要 4 分钟。

2.2. /etc/redis.conf

2.2.1. 密码认证

打开 /etc/redis.conf 修改 requirepass 配置项

# vim /etc/redis.confrequirepass test123

测试

# service redis restartStopping redis-server:                                     [  OK  ]Starting redis-server:                                     [  OK  ]# redis-cliredis 127.0.0.1:6379> set h helloworld(error) ERR operation not permitted

auth test123

redis 127.0.0.1:6379> auth test123OKredis 127.0.0.1:6379> set h helloworldOKredis 127.0.0.1:6379> get h"helloworld"redis 127.0.0.1:6379> exit

redis-cli -a 参数指定密码

# redis-cli -a test123redis 127.0.0.1:6379> set h helloworldOKredis 127.0.0.1:6379> get h"helloworld"redis 127.0.0.1:6379> exit

通过 config 动态改变密码,无需重新启动 redis 进程

# redis-cli -a test123redis 127.0.0.1:6379> config get requirepass1) "requirepass"2) "test123"redis 127.0.0.1:6379> config set requirepass passabcOKredis 127.0.0.1:6379> auth passabcOKredis 127.0.0.1:6379> set h helloworldOKredis 127.0.0.1:6379> get h"helloworld"redis 127.0.0.1:6379> exit

注意:config 不能保存到配置文件

# grep requirepass /etc/redis.conf# If the master is password protected (using the "requirepass" configuration# requirepass foobaredrequirepass test123

master/slave 模式, master 有密码, slave 怎样配置?

masterauth  password

转载地址:http://jafco.baihongyu.com/

你可能感兴趣的文章
sybase执行计划
查看>>
常用正则表达式大全
查看>>
mybatis插件编写
查看>>
mysql top n 问题
查看>>
sql server 数据库创建链接服务器访问另外一个sql server 数据库
查看>>
SpringBoot1.5.1启动错误
查看>>
虚函数
查看>>
Painter 12安装教程
查看>>
JQuery学习思维导图版
查看>>
maven+spring4+hibernate4 搭建
查看>>
Redis和Memcached的选择
查看>>
servlet,RMI,webservice之间的区别--zhuan tie
查看>>
Lua程序设计--类型与值
查看>>
centos7 gitlab安装
查看>>
hibernate中lazy的使用
查看>>
android jni的JNINativeMethod
查看>>
PHP 获取网页301真实地址
查看>>
免安装的Tomcat基本配置和安装
查看>>
iis配置运行php
查看>>
Eclipse断点调试
查看>>