CentOS7 安装Redis最新版本
Posted 刘元涛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 安装Redis最新版本相关的知识,希望对你有一定的参考价值。
方法一:yum安装
yum install -y http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum --enablerepo=remi install redis -y
方法二:源码安装
redis官网https://redis.io/download
# 1.进入目录
cd /usr/local/
# 2.下载
wget https://download.redis.io/releases/redis-6.2.4.tar.gz
# 3.解压
tar xzf redis-6.2.4.tar.gz
# 4.进入解压目录
cd redis-6.2.4
# 5.编译
make
# 6.安装
make install
编译文件会自动复制到/usr/local/bin目录下
进入源码编译src目录,修改redis.conf文件并复制到etc目录
在 /etc/systemd/system新建service文件
vim /etc/systemd/system/redis.service
[Unit]
Description=Redis
After=network.target
[Service]
#Type=forking
ExecStart=/usr/local/bin/redis-server /etc/redis.conf
ExecReload=/usr/local/bin/redis-server -s reload
ExecStop=/usr/local/bin/redis-server -s stop
PrivateTmp=true
[Install]
WantedBy=multi-user.target
注意Type=forking不注释掉 服务无法启动
安装systemd服务
# 使服务自动运行
systemctl daemon-reload
systemctl enable redis
# 启动服务
systemctl restart redis
systemctl status redis
以上是关于CentOS7 安装Redis最新版本的主要内容,如果未能解决你的问题,请参考以下文章