Este contenido no está disponible en el idioma seleccionado.
Chapter 5. Creating a basic cluster on Red Hat OpenStack Platform
This procedure creates a high availability cluster on an RHOSP platform with no fencing or resources configured.
Prerequisites
- An RHOSP instance is configured for each HA cluster node
- The HA cluster node is running RHEL 8.7 or later
- High Availability and RHOSP packages are installed on each node, as described in Installing the high availability and RHOSP packages and agents.
Procedure
On one of the cluster nodes, enter the following command to authenticate the
pcs
userhacluster
. Specify the name of each node in the cluster. In this example, the nodes for the cluster arenode01
,node02
, andnode03
.pcs host auth node01 node02 node03
[root@node01 ~]# pcs host auth node01 node02 node03 Username: hacluster Password: node01: Authorized node02: Authorized node03: Authorized
Copy to Clipboard Copied! Create the cluster. In this example, the cluster is named
newcluster
.pcs cluster setup newcluster node01 node02 node03
[root@node01 ~]# pcs cluster setup newcluster node01 node02 node03 ... Synchronizing pcsd certificates on nodes node01, node02, node03… node02: Success node03: Success node01: Success Restarting pcsd on the nodes in order to reload the certificates… node02: Success node03: Success node01: Success
Copy to Clipboard Copied!
Verification
Enable the cluster.
pcs cluster enable --all
[root@node01 ~]# pcs cluster enable --all node01: Cluster Enabled node02: Cluster Enabled node03: Cluster Enabled
Copy to Clipboard Copied! Start the cluster. The command’s output indicates whether the cluster has started on each node.
pcs cluster start --all
[root@node01 ~]# pcs cluster start --all node02: Starting Cluster… node03: Starting Cluster… node01: Starting Cluster...
Copy to Clipboard Copied!