使用CSRedis 客户端连接 Redis Sentinel(哨兵)的时候 无法连接。
using (var sentinel = new RedisSentinelManager("192.168.2.46:26379", "192.168.2.46:26380")) { sentinel.Connect("mymaster"); // open connection var test2 = sentinel.Call(x => x.Time()); // use the Call() lambda to access the current master connection }
在 执行
sentinel.Connect("mymaster"); 的时候连接失败 提示 Could not connect to sentinel or master。
Redis 的主从 和 Sentinel 已经配置成功并测试正常。