Redis 使用Windows访问VMWare虚拟机中的redis连接不上

1.解决方案(依次检查以下内容)
  1. 检查虚拟机中安装的Redis的配置文件redis.conf
  2. 查找bind和protected-mode这两个配置(发现3.2后新增protected-mode配置,默认是yes,即开启。解决方法分为两种:1、关闭protected-mode模式 2、配置bind或者设置密码)
    Redis 使用Windows访问VMWare虚拟机中的redis连接不上
  3. 关闭Linux的防火墙,如果是CentOS的话使用
[root@bogon bin]# service iptables stop
  1. 重新启动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并指定配置文件
上一篇:Linux的学习


下一篇:js select onchange事件