Linux 安装Redis 5.0

安装参考文档
https://redis.io/download

make 可能会报如下错误
/bin/sh: cc: command not found

yum 命令安装 gcc
如报如下错误:
yum提示Another app is currently holding the yum lock; waiting for it to exit…
可参考:https://blog.csdn.net/testcs_dn/article/details/48711805

运行如下命令
[root@bogon redis-5.0.3]# rm -f /var/run/yum.pid

[root@bogon redis-5.0.3]# yum -y install make gcc*

安装成功 gcc 后可直接使用 make 编译了*
Linux 安装Redis 5.0_第1张图片

默认启动方式为非守护进行进行,需修改 redis.conf 为后台进行启动
[root@bogon src]# vi …/redis.conf
将 no 修改为yes
Linux 安装Redis 5.0_第2张图片

在这里插入图片描述
经过以上步骤安装即可搞定,如有问题可联系qq:787141854
Linux 安装Redis 5.0_第3张图片

你可能感兴趣的:(redis技术)