Redis集群创建失败报错:Sorry, can't connect to node 192.168.xxx.xxx:7001

1.

redis集群安装依赖ruby,所以在配置好ruby环境启动创建集群的命令:
/redis-trib.rb create --replicas 1 192.168.8.101:7001 192.168.8.102:7003 192.168.8.103:7005 192.168.8.101:7002 192.168.8.102:7004 192.168.8.103:7006

2.

发现在redis.conf下bind已经配置好:
Redis集群创建失败报错:Sorry, can't connect to node 192.168.xxx.xxx:7001_第1张图片
这里/etc/hosts下已经配置好 :JANSON02 192.169.xxx.xxx.。
所以最后锁定 没有将在创建服务之前指定redis服务的配置文件,即:
在redis/src目录下(没有配置redis集群的环境变量情况下) 执行:
redis-server redis.conf。

3.所以得出结论:

redis服务的启动依赖redis.conf配置文件。至于具体怎样依赖,有时间自己研究吧。

你可能感兴趣的:(工具使用)