找到下载的链接 1 寻找官网

centos7-安装redis-教程190923-精准版_python

2 进入官网

找到下载的链接

centos7-安装redis-教程190923-精准版_redis_02

centos7-安装redis-教程190923-精准版_解压缩_03

http://download.redis.io/releases/redis-5.0.5.tar.gz
3进入下载目录

在centos系统中,先cd进入个目录,用于保存即将下载的内容

centos7-安装redis-教程190923-精准版_解压缩_04

4 使用wget下载资源
wget http://download.redis.io/releases/redis-5.0.5.tar.gz

centos7-安装redis-教程190923-精准版_redis_05

查看下载的结果

centos7-安装redis-教程190923-精准版_解压缩_06

5 解压缩
[root@ecs-python01 download]# tar -zxvf redis-5.0.5.tar.gz 

解压成功后,多出一个文件夹

centos7-安装redis-教程190923-精准版_解压缩_07

安装的准备 1 移动已解压的目录

执行的命令

mv redis-5.0.5 /usr/local/redis

centos7-安装redis-教程190923-精准版_官网_08

查看移动后的结果

centos7-安装redis-教程190923-精准版_redis_09

2 安装gcc包

补安装一个软件

yum install gcc

centos7-安装redis-教程190923-精准版_解压缩_10

安装gcc完成

centos7-安装redis-教程190923-精准版_python_11

3安装tcl包
yum install tcl

centos7-安装redis-教程190923-精准版_配置文件_12

4 增加环境变量make MALLOC=libc

注意:

首先要进入到拷备好的redis目录中

当前进入到了 /usr/local/redis 目录中

make MALLOC=libc

centos7-安装redis-教程190923-精准版_解压缩_13

执行命令后的结果

centos7-安装redis-教程190923-精准版_python_14

5 进行编译 make命令
make

centos7-安装redis-教程190923-精准版_python_15

6 检测
make test

centos7-安装redis-教程190923-精准版_python_16

安装redis 1 安装前

centos7-安装redis-教程190923-精准版_配置文件_17

2 执行安装命令
[root@ecs-python01 redis]# make install

centos7-安装redis-教程190923-精准版_官网_18

3 安装后的变化

centos7-安装redis-教程190923-精准版_python_19

多出来东西的功能

centos7-安装redis-教程190923-精准版_官网_20

配置文件移动到/etc目录下

确保/etc/下有redis目录的存在

如果不存在,就创建一个

例子中先查询

发现没有

然后又创建

centos7-安装redis-教程190923-精准版_解压缩_21

复制配置文件
[root@ecs-python01 redis]# cp redis.conf /etc/redis/redis.conf

centos7-安装redis-教程190923-精准版_python_22