Re: [ClusterLabs Developers] Unable to access Upstream Redis port using Virtual IP

2022-04-25 Thread Michel D
Hi Ken Thanks for your advice. By the way, I am able to correct the issue by updating the NGINX configuration file. listen 172.16.10.53:6379; with listen 0.0.0.0:6379 ; The setup in pacemaker/corosync looks good. Regards

Re: [ClusterLabs Developers] Unable to access Upstream Redis port using Virtual IP

2022-04-25 Thread Ken Gaillot
Hi, This would be better for the us...@clusterlabs.org list, where people have experience with all sorts of setups. This list is just for discussing code. Thanks! On Mon, 2022-04-25 at 13:23 +0530, Michel D wrote: > I am running two nodes(172.16.10.52/172.16.10.53) NGINX load > balancers. The lo

[ClusterLabs Developers] Unable to access Upstream Redis port using Virtual IP

2022-04-25 Thread Michel D
I am running two nodes(172.16.10.52/172.16.10.53) NGINX load balancers. The load balancers are configured to proxy pass upstream Redis server using TCP port. stream { upstream redis_cache { server 172.16.10.242:6379 max_fails=3 fail_timeout=30s;