第5章 Red Hat OpenStack Platform での基本クラスターの作成
この手順では、フェンシングやリソースが設定されていない RHOSP プラットフォーム上に高可用性クラスターを作成します。
前提条件
- RHOSP インスタンスが各 HA クラスターノードに設定されている。
- HA クラスターノードが RHEL 8.7 以降を実行している
- 高可用性および RHOSP パッケージとエージェントのインストール の説明のように、各ノードにインストールされた高可用性および RHOSP パッケージがある。
手順
クラスターノードのいずれかで以下のコマンドを実行し、
pcs
ユーザーhacluster
を認証します。クラスターの各ノードの名前を指定します。この例では、クラスターのノードはnode01
、node02
およびnode03
です。[root@node01 ~]# pcs host auth node01 node02 node03 Username: hacluster Password: node01: Authorized node02: Authorized node03: Authorized
クラスターを作成します。この例では、クラスターの名前は
newcluster
です。[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
検証
クラスターを有効にします。
[root@node01 ~]# pcs cluster enable --all node01: Cluster Enabled node02: Cluster Enabled node03: Cluster Enabled
クラスターを起動します。コマンドの出力は、クラスターが各ノードで起動したかどうかを示します。
[root@node01 ~]# pcs cluster start --all node02: Starting Cluster… node03: Starting Cluster… node01: Starting Cluster...