Data Management for VMware Tanzu uses RabbitMQ for internal communication. When you deploy a Provider VM, you configure a RabbitMQ address and port number. You may be required to update this RabbitMQ address or port when:

  • The Provider's actual RabbitMQ address is private and Agents cannot reach it.
  • You have configured a Provider High Availability cluster, and the Agents must communicate with a load balancer.

Updating the RabbitMQ settings of a Provider VM is an asynchronous operation. The original/old RabbitMQ address should be accessible to Agents until the update operation completes.

Note: When you update RabbitMQ settings, all Agents will temporarily lose connectivity with the Provider. If an Agent encounters issues communicating with the new address, you may be required to perform manual actions to rectify the situation as described in Addressing Agent Connectivity Issues.

Prerequisites

Before you update RabbitMQ settings, ensure that you can identify the new, publicly-accessible RabbitMQ FQDN or IP address and port number on the Provider VM.

Procedure

Perform the following procedure to change the RabbitMQ settings on a Provider:

  1. Select Settings from the left navigation pane.

    This action displays the Settings view, Information tab.

  2. Locate the High Availability pane.

  3. Examine the entries in the table, identify the Provider for which you want to update the RabbitMQ settings, and navigate to that table row.

  4. Click the three dots in the Actions column and select Edit RabbitMQ from the pop-up menu.

    The RabbitMQ Configuration form displays.

  5. Set the properties to the new RabbitMQ settings:

    Property Name Value
    Publicly accessible FQDN/IP The new publicly-accessible RabbitMQ FQDN or IP address.
    Port The new port number on which the RabbitMQ server is listening.
  6. Click CONFIRM.

    The task returns immediately.

Addressing Agent Connectivity Issues

An Agent environment may enter a DEGRADED state due to a RabbitMQ connectivity failure if Data Management for VMware Tanzu fails to successfully notify the Agent about the RabbitMQ settings change. If you encounter this scenario, you must manually invoke one or more Data Management for VMware Tanzu API calls to rectify the situation:

  1. Re-set the RabbitMQ settings as described in the Procedure above.

  2. Try triggering Data Management for VMware Tanzu to synchronize RabbitMQ settings to all of the Agents by invoking the following API call to:

    POST https://<provider-ip-address>/provider/<provider-id>/sync-rabbit-settings
    

    Synchronizing the RabbitMQ settings to the Agents is an asynchronous operation.

  3. Examine the RabbitMQ settings on each Agent to verify that the endpoint was updated:

    GET https://<agent-ip-address>/onboarding/api/agent/rabbitmq/endpoints
    
  4. If sychronizing the settings did not succeed for a specific Agent, invoke the following API call to directly modify the RabbitMQ settings on the Agent VM:

    PATCH https://<agent-ip-address>/onboarding/api/agent/rabbitmq/endpoints
    

    Request parameters:

    {
      "endpoint": "<new-rabbitmq-ip-address>",
      "port": <new-port-number>
    }
    
check-circle-line exclamation-circle-line close-line
Scroll to top icon