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
5.注释掉ip绑定(这个只允许本地调试,不注释掉这个,你远程这个redis的时候会提示:
redis.clients.jedis.exceptions.JedisConnectionException: java.net.ConnectException: Connection refused: connect
)
6:关闭保护模式(不关闭的话远程这个redis会提示:
redis.clients.jedis.exceptions.JedisDataException: DENIED Redis is running in protected mode
)
下面关于Redis的文章您也可能喜欢,不妨参考下:
Ubuntu 14.04下Redis安装及简单测试
Ubuntu 16.04环境中安装PHP7.0 Redis扩展
CentOS 7.0 安装Redis 3.2.1详细过程和使用常见问题