Adding a node to a cluster

Prev Next

A Virtual Execution appliance serves no purpose until it is added to a cluster. After you add a Virtual Execution appliance to the Central Management appliance, it is an available node that can be added to an IVX cluster. You can determine whether a Virtual Execution appliance is an available node from the Central Management Web UI or CLI and the Virtual Execution CLI.

The Cluster column in the Central Management Web UI indicates whether a node is available.

The Node information section in the following CLI command output is empty because the vx-2 node is not currently part of a cluster, so it is available.

vx-2 # show mvx node status full MVX Cluster: Node Status
...
Node information:
vx-2 #

Prerequisites

  • Operator or Admin access to the Central Management appliance

Adding a node to a cluster using the Web UI

Use the Appliances > Clusters page to add a node to an IVX cluster.

To add a node to a cluster:
  1. Log in to the Central Management Web UI.

  2. Select Appliances > Clusters.

  3. Click the Actions menu, and then select Edit.

  4. Click the arrow to move the node from the Available list to the Selected list.

  5. Click Next.

  6. Enable at least one node as a broker and define one node as the master configuration.

  7. Click Update.

Adding a node to a cluster using the CLI

Use the commands in this section to add a node to an IVX cluster.

To add a node to a cluster:
  1. Log in to the Central Management CLI.

  2. Enable the CLI configuration mode:

    cm-hostname > enable
    cm-hostname # configure terminal
  3. Add the node:

    cm-hostname (config) # cmc mvx cluster <Cluster name> node <node name>
  4. Verify that the node was added:

    cm-hostname (config) # show cmc mvx cluster Cluster-Acme nodes
    NODES: Cluster-Acme     CONNECTED     HEALTHY ADDRESS
    -------------           ---------     ------- -------
    vx-1                    yes           yes     10.11.121.12
    vx-2                    yes           yes     10.11.121.18
    ...