Redis下载、安装、部署及与springboot的集成

1、Redis下载

下载地址:http://www.redis.cn(redis中文网)

1586169893.jpg

点击最新稳定版本是redis 5.0.5就行

2、安装Redis(我是在虚拟机上安装的)

  • 用xftp上传到虚拟机/usr/local/install下(我在/usr/local下创建了一个install文件夹,会把所有的安装文件都放在这个文件夹下,命令是mkdir /usr/local/install),解压redis:
[root@localhost install]# tar xf redis-5.0.5.tar.gz
[root@localhost install]# cd redis-5.0.5
[root@localhost redis-5.0.5]# ll
总用量 264
-rw-rw-r--.  1 root root 106874 5月  16 2019 00-RELEASENOTES
-rw-rw-r--.  1 root root     53 5月  16 2019 BUGS
-rw-rw-r--.  1 root root   2381 5月  16 2019 CONTRIBUTING
-rw-rw-r--.  1 root root   1487 5月  16 2019 COPYING
drwxrwxr-x.  6 root root    124 5月  16 2019 deps
-rw-rw-r--.  1 root root     11 5月  16 2019 INSTALL
-rw-rw-r--.  1 root root    151 5月  16 2019 Makefile
-rw-rw-r--.  1 root root   6888 5月  16 2019 MANIFESTO
-rw-rw-r--.  1 root root  20555 5月  16 2019 README.md
-rw-rw-r--.  1 root root  61797 5月  16 2019 redis.conf
-rwxrwxr-x.  1 root root    275 5月  16 2019 runtest
-rwxrwxr-x.  1 root root    280 5月  16 2019 runtest-cluster
-rwxrwxr-x.  1 root root    341 5月  16 2019 runtest-moduleapi
-rwxrwxr-x.  1 root root    281 5月  16 2019 runtest-sentinel
-rw-rw-r--.  1 root root   9710 5月  16 2019 sentinel.conf
drwxrwxr-x.  3 root root   4096 5月  16 2019 src
drwxrwxr-x. 11 root root    182 5月  16 2019 tests
drwxrwxr-x.  8 root root   4096 5月  16 2019 utils
  • 编译Redis
[root@localhost redis-5.0.5]# make
  • 安装Redis
[root@localhost redis-5.0.5]# cd src
[root@localhost src]# make install PREFIX=/usr/local/install/redis

    CC Makefile.dep

Hint: It's a good idea to run 'make test' ;)

    INSTALL install
    INSTALL install
    INSTALL install
    INSTALL install
    INSTALL install
  • 部署Redis,为了方便管理,将Redis文件中的conf配置文件和常用命令移动到同一文件中
[root@localhost redis]# cd /usr/local/install/redis
[root@localhost redis]# mkdir etc
[root@localhost redis]# ll
总用量 0
drwxr-xr-x. 2 root root 134 4月   6 19:26 bin
drwxr-xr-x. 2 root root   6 4月   6 19:28 etc
[root@localhost install]# cd redis-5.0.5/
[root@localhost redis-5.0.5]# mv redis.conf /usr/local/install/redis/
  • 将Redis配置为后台启动,修改redis.conf文件
[root@localhost etc]# vim redis.conf 
将daemonize no 改成daemonize yes

附:在vi、vim编辑器中斜杠“/”后加搜索关键字为查找命令,小写n向下查找,大写N为向上查找

  • 将Redis加入到开机启动
[root@localhost etc]# vim /etc/rc.local
/usr/local/local/redis/bin/redis-server /usr/local/install/redis/etc/redis.conf(将这段加入到文件中)
  • 开启Redis
[root@localhost etc]# /usr/local/install/redis/bin/redis-server /usr/local/install/redis/etc/redis.conf
5929:C 06 Apr 2020 19:40:17.867 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
5929:C 06 Apr 2020 19:40:17.868 # Redis version=5.0.5, bits=64, commit=00000000, modified=0, pid=5929, just started
5929:C 06 Apr 2020 19:40:17.868 # Configuration loaded
  • 关闭Redis
[root@localhost bin]# redis-cli shutdown
  • 监测后台进程是否存在
root       6121      1  0 19:45 ?        00:00:00 redis-server 127.0.0.1:6379
root       6126   1456  0 19:45 pts/0    00:00:00 grep --color=auto redis`
  • 检测6379端口是否在监听
[root@localhost bin]# netstat -lntp | grep 6379
tcp        0      0 127.0.0.1:6379          0.0.0.0:*               LISTEN      6121/redis-server 1 
  • 监测redis-cli客户端是否正常
[root@localhost bin]# redis-cli 
127.0.0.1:6379> set key hello
OK
127.0.0.1:6379> get key
"hello"
127.0.0.1:6379> 
  • 设置Redis密码
[root@localhost bin]# redis-cli 
127.0.0.1:6379> config get requirepass
1) "requirepass"
2) ""

出现如上结果表示Redis密码没有设置过。
设置密码为1234

127.0.0.1:6379> config set requirepass 1234
OK
127.0.0.1:6379> auth 1234
OK
  • 重启Redis服务
127.0.0.1:6379> quit
[root@localhost bin]# redis-cli -h 127.0.0.1 -p 6379 -a 1234
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:6379> config get requirepass
1) "requirepass"
2) "1234"
[root@localhost bin]# redis-cli 
127.0.0.1:6379> config set requirepass 1234
OK

3、Redis Desktop Manager连接Redis

  • 修改redis.conf文件
把bind 127.0.0.1 给注释掉
把本地保护模式给关闭,如果没有,连接不上,关闭方式:protected-mode no
  • 重启Redis
[root@localhost bin]# redis-cli shutdown
[root@localhost bin]# redis-server 
1586175569(1).jpg

1586175681(1).jpg

在测试Redis Desktop Manager是否能连接上Redis时,在window的CMD中用这个命令

Telnet 192.168.247.129 6379

如果直接出现黑框说明连接成功


1586175887(1).jpg

3、springboot集成Redis

注:实体类必须实现序列化接口

public class User implements Serializable {
    private static final long serialVersionUID = 913177156675201697L;
}
  • 修改pom.xml文件,在文件中增加以下配置
        
        
            org.springframework.boot
            spring-boot-starter-cache
        
        
            org.springframework.boot
            spring-boot-starter-data-redis
        
  • 在启动类加注解@EnableCaching
package com.test;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@EnableCaching
@SpringBootApplication
@EnableSwagger2
@MapperScan(" com.test.dao")
public class EasycodedemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(EasycodedemoApplication.class, args);
    }

}
  • 在Dao层的类中加注解@CacheConfig(cacheNames = "userCache")
@CacheConfig(cacheNames = "userCache")
@Mapper
public interface UserDao {}
  • 在Dao层的方法中加注解@Cacheable(),这是查询的注解,其他增、改、删看以下说明
    /**
     * 通过ID查询单条数据
     *
     * @param id 主键
     * @return 实例对象
     */
    @Cacheable()
    User queryById(Integer id);
附:
方法中@CachePut @CacheEvict @Cacheable
@CachePut 是将数据加入到redis缓存中
@Cacheable 在获取数据的时候会先查询缓存,如果缓存中存在,则不执行查询数据库的方法,如果不存在则查询数据库,并加入到缓存中。
@CacheEvict 一般注解到删除数据的操作上,会将一条或多条数据从缓存中删除。
这三个方法都有value 和 key属性。
value指的是缓存的名称,不能为空。也可以在类@CacheConfig注解上指定value,则后面的方法的注解value可省略且value值与类注解的value相同。
key是缓存的键,默认为空,既表示使用方法的参数类型及参数值作为key。可通过key = "#p0",p0为方法的第一个参数,p1为第二个,也可直接 #参数的名字。
  • 在application.yml文件中加如下配置
spring
  redis:
    database: 9
    host: 192.168.247.129
    port: 6379
    password: 1234
    jedis:
      pool:
        max-active: 8
        max-idle: 8
        min-idle: 0
        max-wait: -1
  • 启动项目后,访问相关方法,在Redis的可视化工具中可以看见如下效果


    1586177765(1).jpg

你可能感兴趣的:(Redis下载、安装、部署及与springboot的集成)