Re: [cas-user] HA Redis Crash

2018-12-12 Thread Ramakrishna G
Mac, You really saved my!! Thanks you so much. On Wed, Dec 12, 2018 at 6:38 PM Mac Reid wrote: > Hi, > > Our repo is based on the overlay. You can find the version of spring boot > here: https://github.com/apereo/cas-overlay-template/tree/5.3 > > Another thing I noticed is the node option

Re: [cas-user] HA Redis Crash

2018-12-12 Thread Mac Reid
Hi, Our repo is based on the overlay. You can find the version of spring boot here: https://github.com/apereo/cas-overlay-template/tree/5.3 Another thing I noticed is the node option does not end with an `s`, meaning it should look like: cas.ticket.registry.redis.sentinel.master=mymaster

Re: [cas-user] HA Redis Crash

2018-12-12 Thread Ramakrishna G
Hi Mac, I tried your solution but didn't work!!. Do you any dependency added in your pom file apart from "cas-server-support-redis-ticket-registry"? Also what is the version of springboot used? Thanks Ramakrishna G On Wed, Dec 12, 2018 at 1:23 AM Mac Reid wrote: > Hi, > > You cannot

Re: [cas-user] HA Redis Crash

2018-12-11 Thread Mac Reid
Hi, You cannot configure a single redis server with sentinel configured as well. Your config should only have: cas.ticket.registry.redis.sentinel.master=mymaster cas.ticket.registry.redis.sentinel.nodes[0]=192.168.111.201:26379 cas.ticket.registry.redis.sentinel.nodes[1]=192.168.111.205:26379

Re: [cas-user] HA Redis Crash

2018-12-07 Thread Ramakrishna G
Does Cas 5.3.0 version has redis sentinel support? > On 04-Dec-2018, at 6:48 PM, Ramakrishna G wrote: > > Hello all, > > I am using redis to store ticket is CAS. But now I have a new requirement to > implement HA Redis Ticket Registery with sentinel. > > cas.properties > >

[cas-user] HA Redis Crash

2018-12-04 Thread Ramakrishna G
Hello all, I am using redis to store ticket is CAS. But now I have a new requirement to implement HA Redis Ticket Registery with sentinel. cas.properties cas.ticket.registry.redis.host=192.168.111.201 cas.ticket.registry.redis.port=6379 cas.ticket.registry.redis.sentinel.master=mymaster