Hi,
I am trying to install vRA 7 in a distributed setup with the following
2 vRA VA (vRA01, vRA02)
2 Windows 2008-R2 VMs with all IaaS services (Iaas01, IaaS02)(IaaS01 Being Primary Manager)
3 Load balances - 3CentOS 7 VMs with haproxy installed (firewall disabled on all 3)
SQL 2014 in a separate cluster
below is the config file i used for haproxy
==========vRA============
global
log 127.0.0.1 local2
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
maxconn 4000
user nobody
group nobody
daemon
tune.bufsize 65535
stats socket /var/lib/haproxy/stats
defaults
mode http
log global
option tcplog
option dontlognull
option http-server-close
# option forwardfor except 127.0.0.0/8
option redispatch
retries 3
timeout http-request 10s
timeout queue 1m
timeout connect 5000
timeout client 50000
timeout server 300000
timeout http-keep-alive 10s
timeout check 10s
maxconn 3000
listen ssl_webfarm
bind *:443
balance source
hash-type consistent
mode tcp
#option ssl-hello-chk
server vra01 <vra01 - IP>:443 # check
# server vra02 <vra02 - IP>:443 check
============================
=========IaaS Web=============
global
log 127.0.0.1 local2
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
maxconn 4000
user nobody
group nobody
daemon
tune.bufsize 65535
stats socket /var/lib/haproxy/stats
defaults
mode http
log global
option httplog
option dontlognull
option http-server-close
option forwardfor except 127.0.0.0/8
option redispatch
retries 3
timeout http-request 10s
timeout queue 1m
timeout connect 5000
timeout client 50000
timeout server 3000000
timeout http-keep-alive 10s
timeout check 10s
maxconn 3000
listen ssl_webfarm
bind *:443
mode tcp
balance source
hash-type consistent
#option ssl-hello-chk
server iaas01 <iaas01 IP>:443 #check
#server iaas02 <iaas02 IP>:443 check backup
=============================
=========IaaS - Manager=========
global
log 127.0.0.1 local2
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
maxconn 4000
user nobody
group nobody
daemon
tune.bufsize 65535
stats socket /var/lib/haproxy/stats
defaults
mode http
log global
option httplog
option dontlognull
option http-server-close
option forwardfor except 127.0.0.0/8
option redispatch
retries 3
timeout http-request 10s
timeout queue 1m
timeout connect 5000
timeout client 50000
timeout server 3000000
timeout http-keep-alive 10s
timeout check 10s
maxconn 3000
listen ssl_webfarm
bind *:443
mode tcp
balance source
hash-type consistent
#option ssl-hello-chk
server iaas01 <iaas01 IP>:443 #check
#server iaas02 <iaas02 IP>:443 check backup
=============================
Now I am facing multiple issues
Initially the installation used to reach till the 7th step (/WEB step) and it use to fail
But now it cannot go beyond the 3rd step (verify all services are started)
This is the error I get
Healthcheck failed. Check /var/log/vmware/vcac/vcac-config.log for more details.
But i dont see anything strange is the above location.
could anyone point out where i am going wrong
I am using self signed certificates if that matters
also as far as i can tell my LBs are fine but its just my first time working with HAproxy or any LB in general
Any help would be appreciated.
-R
Message was edited by: rishabmehta Added the error message