Top
PRIMECLUSTER  Cluster Foundation Configuration and Administration Guide 4.3
FUJITSU Software

2.2.3 Reconfiguring quorum

Refer to the Section "Adding and removing a node from CIM" for the GUI procedures.

CLI

The configuration can be changed at any time and is effective immediately. When a new node is added to the quorum set of nodes, the node being added must be part of the cluster so as to guarantee that the new node also has the same quorum configuration. Removing a node from the quorum set can be done without restriction.

When the configuration information is given to the command rcqconfig(1M) as arguments, it performs the transaction to CFREG to update the configuration information. Until CIM is successfully configured and gets the initial state of the quorum, CIM has to respond with the quorum state of False to all queries.

Example

In this example the cluster has formed but no quorum was established.

  • Display the states of all the nodes in the cluster as follows:

    fuji2# cftool -n
    Node    Number    State    Os    Cpu
    fuji2    1    UP    Linux    Pentium
    fuji3    2    UP    Linux    Pentium
  • Display the current quorum configuration as follows:

    fuji2# rcqconfig -g

Nothing is displayed, since no nodes have been added so far.

  • Add new nodes in a quorum set of nodes as follows:

    fuji2# rcqconfig -a fuji2 fuji3
  • Display the current quorum configuration parameters as follows:

    fuji2# rcqconfig -g
    QUORUM_NODE_LIST= fuji2 fuji3
  • Delete nodes from a quorum set of nodes as follows:

    fuji2# rcqconfig -d fuji2
  • Display the current quorum configuration parameters after one node is deleted as follows:

    fuji2# rcqconfig -g
    QUORUM_NODE_LIST= fuji3
  • Add a new node, fuji11 (which is not in the cluster), in a quorum set of nodes as follows:

    fuji2# rcqconfig -a fuji2 fuji3 fuji11
    Cannot add node fuji11 that is not up.
  • Since CF only configured the cluster to consist of fuji2 and fuji3, fuji11 does not exist. The quorum set remains unchanged.

    fuji2# rcqconfig -g
    QUORUM_NODE_LIST= fuji3