CentOS7下yum安装Redis

编程

1.首先添加yum源的资源库信息

wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo

或者

yum install epel-release

2.安装redis

yum install redis

3.启动redis

systemctl start redis.service

4.设置redis开机启动

systemctl enable redis.service

5.设置redis密码

vi /etc/redis.conf

去掉# requirepass foobared,前面的#,并把foobared改成你的密码。

6.允许其它电脑连接

vi /etc/redis.conf

bind 127.0.0.1前加#,将其注释掉。注意,修改配置后,需要重启服务:systemctl restart redis.service

以上是 CentOS7下yum安装Redis 的全部内容, 来源链接: utcz.com/z/512237.html

回到顶部