02-Jun-2020 08:38
I have done creating health monitor with following steps previous topic about ha proxy for redis server as below but pool member's didnt come up somehow. I got tcpdump file and there is no packet about health monitor . at least i couldnt find . im stucked.
i created health monitors manually also i created with tmsh command which was shared below. there was nothing changed even tough both monitor same.
how can i see where i am wrong?
STEP 1: Create the first monitor Note: The send and recieve strings should be configured as Send String: AUTH mypass PING Receive String: PONG
Configure the monitor from Configuration Utility
Configure the monitor from TMSH Utility
# tmsh create ltm monitor tcp tcp_monitor_ping_redis { adaptive disabled defaults-from tcp destination *:* interval 5 ip-dscp 0 recv PONG recv-disable none send "AUTH mypass\r\nPING\r\n" time-until-up 0 timeout 16 }
STEP 2: Create the second monitorNote: The send and recieve strings should be configured as Send String: AUTH mypass info replication Receive String: role:master
Send String: AUTH mypass info replication
Receive String: role:master
Configure the monitor from Configuration Utility
Configure the monitor from TMSH Utility
# tmsh create ltm monitor tcp tcp_monitor_role_redis { adaptive disabled defaults-from tcp destination *:* interval 5 ip-dscp 0 recv role:master recv-disable none send "AUTH mypass\r\ninfo replication\r\n" time-until-up 0 timeout 16 }