1.解决方案(依次检查以下内容)
- 检查虚拟机中安装的Redis的配置文件redis.conf
- 查找bind和protected-mode这两个配置(发现3.2后新增protected-mode配置,默认是yes,即开启。解决方法分为两种:1、关闭protected-mode模式 2、配置bind或者设置密码)
- 关闭Linux的防火墙,如果是CentOS的话使用
[root@bogon bin]# service iptables stop
- 重新启动Redis服务,记得指定配置文件
[root@bogon bin]# ps -le|grep -i redis //找redis进程
[root@bogon bin]# kill -9 pid//杀掉redis进程
[root@bogon bin]# ./redis-server redis.conf //启动redis并指定配置文件