错误 Uncaught RedisClusterException: Couldn’t map cluster keyspace using any provided seed in

  • 原因:集群设置密码,连接的时候没有传密码

  • 解决方案:创建集群连接时带上密码

#使用密码连接集群
$cluster = new RedisCluster(NULL, Array("host:7000", "host:7001"), 1.5, 1.5, true, "密码");