Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。 它支持多种类型的数据结构,内置了 复制,LUA脚本,LRU驱动事件,事务和不同级别的磁盘持久化, 并通过哨兵和自分区提供高可用性。
本文为Redis初体验,主要包括以下内容:
1,在Centos中安装Redis
2,Redis的简单使用
3,构建Spring Boot Redis工程
4,遇到问题记录
Centos安装
在Window上利用VMware虚拟机安装CentOS可以参考之前的一篇博客的部分内容,在Window下安装CentOS
Redis安装
|
|
redis基本指令,更多指令可以通过{cmd} --help
来查看,官网帮助文档
构建Spring Boot Redis工程
1,使用http://start.spring.io/ 来生成redis工程,或者直接在SpringBoot中引入
2,在application.properties配置Redis
3,添加测试代码
遇到问题
1,Windows无法使用telnet
启用telnet:控制面板 –> 程序 –> 启用或关闭Windows功能 –> Telnet客户端 –> 确定 –>
telnet 192.168.1.105 6379
2,telnet不通或代码报错:redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
打开6379端口:
firewall-cmd --zone=public --add-port=6379/tcp --permanent
或关闭linux防火墙:systemctl stop firewalld.service
(可选)禁止firewall开机启动systemctl disable firewalld.service
3,代码报错:DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to clients.
Spring在异常中给了四种解决方案,任何一种都能解决:
1) 使用CONFIG SET protected-mode no
使用CONFIG REWRITE
可以让配置永久生效
2) 修改redis.conf,protected-mode no
,重启Redis
3) 重启Redis并带着--protected-mode no
选项
4) 配置绑定地址bind 192.168.1.104
或配置密码requirepass xxxxxx
参考
1,Redis官网
2,Redis中文网
3,Spring Data Redis
4,Spring Boot Redis配置
5,CentOS 7.0关闭默认防火墙启用iptables防火墙