Linux CentOS安装Redis7.x

1. 官网下载新版本redis,上传至Linux

https://redis.io/download/

Linux CentOS安装Redis7.x_第1张图片

2. 安装构建工具

yum install -y gcc

3. 解压

tar -xzf redis-7.0.5.tar.gz
cd redis-7.0.5/

在这里插入图片描述

3. 编译

make

Linux CentOS安装Redis7.x_第2张图片

4. 安装

#默认安装
make install
#指定安装目录
make install PREFIX=[安装位置目录]

Linux CentOS安装Redis7.x_第3张图片

5. 从解压目录复制配置文件到etc下

cp /home/package/redis-7.0.5/redis.conf /etc/

6. 修改配置文件

6.1 设置可远程访问

注释127.0.0.1 -::1这一行
Linux CentOS安装Redis7.x_第4张图片
protected-mode改为no
Linux CentOS安装Redis7.x_第5张图片

6.2 设置为守护进程

daemonize no改为daemonize yes
Linux CentOS安装Redis7.x_第6张图片

7.启动

redis-server /etc/redis.conf

8.配置systemctl管理Redis

vim /usr/lib/systemd/system/redis.service

写入如下内容

#服务的说明
[Unit]
#描述服务
Description=redis
#描述服务类别
After=network.target

#服务运行参数的设置
[Service]
#后台运行的形式
Type=forking
#启动命令
ExecStart=/usr/local/bin/redis-server /etc/redis.conf
#停止命令
ExecStop=/usr/local/bin/redis-cli shutdown

# 服务安装的设置
[Install]
# 用户的模式
WantedBy=multi-user.target

重载配置

systemctl daemon-reload

重启redis

systemctl restart redis

查看redis运行状态

systemctl status redis

Linux CentOS安装Redis7.x_第7张图片

你可能感兴趣的:(环境搭建,#,Redis,linux,redis)