概念
(略)
方法
1 | keys * |
redis作为认证token数据库
ticket=(accountid, token)
centos安装Redis
参考:Linux 平台将 Redis 设置为服务并开机自启动
服务部署好之后,若无法远程访问
首先检查防火墙设置1
2
3systemctl status firewalld # 查看防火墙状态
firewall-cmd --zone= public --query-port=6379/tcp # 查询防火墙端口状态
firewall-cmd --zone=public --add-port=6379/tcp --permanent # 永久开发端口及协议
确认是否绑定服务主机ip 参考 处理CentOS 7.2 x64端口不通的问题
远程访问
修改/etc/redis/redis.conf1
2# 注释掉或将其改为服务器静态ip
# bind 127.0.0.1 ::1
DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to clients…..
受保护的模式,改为no1
protected-mode no