window系统下连接虚拟机中的Redis

使用时报异常:Exception in thread "main" redis.clients.jedis.exceptions.JedisConnectionException: Failed connecting to 192.168.92.130:6379

window系统下连接虚拟机中的Redis_第1张图片

解决方法:

打开redis.conf配置文件:

更改两处:

(1).允许任何ip的主机访问

bind 0.0.0.0

window系统下连接虚拟机中的Redis_第2张图片

(2).保护模式关闭

protected-mode no

window系统下连接虚拟机中的Redis_第3张图片

(3).端口对外开放

vi /etc/sysconfig/iptables

window系统下连接虚拟机中的Redis_第4张图片

-A INPUT -m state --state NEW -m tcp -p tcp --dport 6379 -j ACCEPT

然后就OK啦

你可能感兴趣的:(Redis成长之路,redis,jedis,centos,vmware)