Cloud Proxy shows as Offline after upgrading VMware Aria Operations (SaaS)
search cancel

Cloud Proxy shows as Offline after upgrading VMware Aria Operations (SaaS)

book

Article ID: 331408

calendar_today

Updated On:

Products

VMware Aria Suite

Issue/Introduction

Symptoms:
  • After upgrading the Cloud Proxy, it's status shows as Offline in the Product UI.
  • The /var/log/haproxy-admin.log on the Cloud Proxy shows errors similar to:
Server PrxyRC_BE/VROPS_0 is DOWN, reason: Layer6 invalid response, info: "SSL handshake failure", check duration: 161ms. 0 active and 0 backup servers left. 0 sessions active, 0 requeued, 0 remaining in queue.


Cause

This issue occurs when there is an SSL inspection (by firewall or network proxy) enabled on the local network side and the chain of certificates used as part of the SSL inspection are not added to Cloud Proxy.

Resolution

To resolve this issue, follow the Add root CA certificate to Cloud Proxy after deployment section of Add CA certs while deploying a cloud proxy in VMware Aria Operations (83698).

Workaround:
To workaround the issue, the Cloud Proxy should be whitelisted in the network firewall configuration.

Alternatively, you can set ssl verify to none on the Cloud Proxy.
To do this, complete the following steps:
  1. Log into the Cloud Proxy as root via SSH or Console.
  2. Run the following command to backup the /etc/haproxy/haproxy.cfg file:
cp /etc/haproxy/haproxy.cfg /etc/haproxy/haproxy.bak
  1. Open /etc/haproxy/haproxy.cfg in a text editor.
  2. Change all occurrences of ssl verify required ca-file /storage/vcops/user/conf/ssl/haproxy.ca.pem to ssl verify none.
  3. Save and close the file.
  4. Run the following command to restart the haproxy and collector services:
service haproxy restart && service collector restart


Additional Information

To undo the workaround of setting ssl verify to none, complete the following:
  1. Log into the Cloud Proxy as root via SSH or Console.
  2. Run the following command to replace the /etc/haproxy/haproxy.cfg file with the backed up version:
mv /etc/haproxy/haproxy.bak /etc/haproxy/haproxy.cfg
  1. Run the following command to restart the haproxy and collector services:
service haproxy restart && service collector restart