I'm trying to set up a redis-sentinel cluster locally. I'm running Redis-64.2.8.4
on windows . I'd like to set up a master with 2 slaves as that will mirror my live environment.
I'm running
redis-server.exe sentinel.conf --sentinel
With this configuation
----
maxheap 64MB
sentinel monitor mymaster 127.0.0.1 7000 2
sentinel down-after-milliseconds mymaster 60000
sentinel failover-timeout mymaster 180000
sentinel parallel-syncs mymaster 1
----
But then I just get a repeated log of this
wait3() returned a pid (-1) we can't find in our scripts execution queue!
I've read through the docs but to be honest I'm not much the wiser on what I should be doing here. Do I specify all the servers in the configuration?