如果使用yum 安装的redis不会是最新版的redis
yum install redis如果要安装最新的redis,则需要安装Remi的软件源,官网地址:http://rpms.famillecollet.com/
yum install -y http://rpms.famillecollet.com/enterprise/remi-release-7.rpm执行安装:
yum --enablerepo=remi install redis启动redis服务
service redis start或者
systemctl start redis
redis安装完毕后,我们来查看下redis安装时创建的相关文件,如下:
rpm -qa |grep redis
rpm -ql redis
redis-cli --version
chkconfig redis on或者
systemctl enable redis.serviceredis开启远程登录连接,redis默认只能localhost访问,所以需要开启远程登录。解决方法如下:
在redis的配置文件/etc/redis.conf中
将bind 127.0.0.1 改成了 bind 0.0.0.0
然后要配置防火墙 开放端口6379
[root@localhost ~]# firewall-cmd --query-port=6379/tcp no
CentOS 7.0默认使用的是firewall作为防火墙,使用iptables必须重新设置一下
1、直接关闭防火墙
systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动
2、设置 iptables service
yum -y install iptables-services
如果要修改防火墙配置,如增加防火墙端口6379,编辑iptables
vim /etc/sysconfig/iptables
增加规则 (允许6379使用tcp协议连接)- A INPUT -m state --state NEW -m tcp -p tcp --dport 6379 -j ACCEPT
保存退出后
systemctl restart iptables.service #重启防火墙使配置生效
systemctl enable iptables.service #设置防火墙开机启动
重启centOS
shutdown -r now
服务器连接redis
redis-cli
客户端连接redis