美文网首页
CentOS-7 yum 安装 redis

CentOS-7 yum 安装 redis

作者: 不知不怪 | 来源:发表于2019-04-04 21:47 被阅读0次

1.安装yum源

yum install -y  vim
yum install -y http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

2.安装redis

yum install  -y  redis

3.修改配置文件

vim /etc/redis.conf

找到bind 127.0.0.1,把它注释掉 # bind 127.0.0.1
protected-mode yes 改成 no

4.关闭防火墙

systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动

5.命令

service redis start
service redis stop
service redis restart

执行如下命令测试

service redis start
redis-cli
set gzz helloworld
get gzz

6.实例

https://github.com/gzz2017gzz/spring-boot2-example/tree/master/21-spring-boot-RedisTemplate
https://github.com/gzz2017gzz/spring-boot2-example/tree/master/22-spring-boot-Redis-session
https://github.com/gzz2017gzz/spring-boot2-example/tree/master/25-spring-boot-redis-cluster
https://github.com/gzz2017gzz/spring-boot2-example/tree/master/32-spring-boot-redis-cache

相关文章

网友评论

      本文标题:CentOS-7 yum 安装 redis

      本文链接:https://www.haomeiwen.com/subject/mnkciqtx.html