2019-09-28 redis 设置密码

  • Post author:
  • Post category:其他


1、通过配置来设置

requirepass test123

2、 登录后 通过命令

# 设置密码

config set requirepass test123

# 登录密码

# 可以在登录的时候输入密码  redis-cli -p 6379 -a test123

# 通过命令登录

auth test123

3、获取密码

config get requirepass

4、从服务器设置主服务器密码

配置中添加 masterauth test123

或者通过命令

config set masterauth test123

5、python中 带密码登录

import redis
pool = redis.ConnectionPool(host="localhost", port=6379, password=<你的密码>)
mRedis = redis.StrictRedis(connection_pool=pool)