centos7源码安装redis

参考官网的安装方法:Install Redis from Source | Redis

实际操作如下,我这里是centos7.9:

 另外,前面安装了python3的环境,所以已经安装了gcc编译环境,下面就不再说明了。在安装python3时,安装了以下包:

yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel libffi-devel gcc make

下载

这里使用redis6.2,应该是很稳定的版本了

https://download.redis.io/releases/redis-6.2.13.tar.gz

解压

 tar -xzvf redis-6.2.13.tar.gz -C /home

mv /home/redis-6.2.13 /home/redis

编译make

cd /home/redis

make

完成后出现以下:

centos7源码安装redis_第1张图片

make install

centos7源码安装redis_第2张图片

复制配置文件至etc启动目录

cp /home/redis/redis.conf /etc/

运行

测试是否可以正常启动

redis-server

 centos7源码安装redis_第3张图片

 开机自启

使用系统服务的方式开机自动启动

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

文件内容:
[Unit]
Description=Redis-Server
After=network.target
[Service]
Type=forking
PIDFile=/var/run/redis_6379.pid
ExecStart=/usr/local/bin/redis-server /etc/redis.conf
ExecStop=/usr/local/bin/redis-cli -p 6379 shutdown
ExecReload=/bin/kill -s HUP $MAINPID
RestartSec=5
PrivateTmp=true
[Install]
WantedBy=multi-user.target

 修改配置redis.conf文件,指定目录,后台运行:

mkdir /home/redis/data /home/redis/log

vi /etc/redis.conf

修改文件中:

daemonize yes

supervised auto

指定目录:

dir /home/redis/data

指定日志文件:

logfile "/home/redis/log/redis.log"

测试启动:

systemctl start redis.service

systemctl enable redis.servicecentos7源码安装redis_第4张图片

测试

redis-cli

设置键值对:

set myKey abc

取出键值对:

get myKey
 

centos7源码安装redis_第5张图片

注意

配置完成后,redis如果直接使用redis-server指令打开,则服务开启会失败,必须使用kill结束进程后,才能使用systemctl start redis打开。

你可能感兴趣的:(CentOS,LINUX,redis,linux)