1.由于centOS官方yum源里面没有Redis,这里我们需要安装一个第三方的yum源,这里用了fedora的epel仓库
yum install epel-release
安装过程中会有让你确认的,输入y按回车就可以了
2.安装Redis
yum install redis
安装过程中会有让你确认的,输入y按回车就可以了
3.启动Redis
service redis start
4.修改端口号/密码等配置
vim /etc/redis.conf
Posted 曲高终和寡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS使用yum安装Redis的方法相关的知识,希望对你有一定的参考价值。
1.由于centOS官方yum源里面没有Redis,这里我们需要安装一个第三方的yum源,这里用了fedora的epel仓库
yum install epel-release
安装过程中会有让你确认的,输入y按回车就可以了
2.安装Redis
yum install redis
安装过程中会有让你确认的,输入y按回车就可以了
3.启动Redis
service redis start
4.修改端口号/密码等配置
vim /etc/redis.conf
以上是关于CentOS使用yum安装Redis的方法的主要内容,如果未能解决你的问题,请参考以下文章
CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段
CentOS7 yum安装redis无法以默认用户(redis)启动