基本配置
# 生成10位base64编码的密码并以标准字符集输出
openssl rand 10 | openssl base64 -A
vim /etc/redis.conf, 取消requirepass行的注释,修改后面的值
sudo systemctl restart redis
# 开启过期key事件监听(会有一定的额外消耗)
config set notify-keyspace-events Ex
# 生成10位base64编码的密码并以标准字符集输出
openssl rand 10 | openssl base64 -A
vim /etc/redis.conf, 取消requirepass行的注释,修改后面的值
sudo systemctl restart redis
# 开启过期key事件监听(会有一定的额外消耗)
config set notify-keyspace-events Ex