Pacemaker : ノードを追加する2025/02/26 |
|
既存のクラスターにノードを追加する場合の設定です。 例として、既存のクラスターに [node03] を新規に追加します。
+--------------------+
| [ ISCSI Target ] |
| dlp.srv.world |
+----------+---------+
10.0.0.30|
|
+----------------------+ | +----------------------+
| [ Cluster Node#1 ] |10.0.0.51 | 10.0.0.52| [ Cluster Node#2 ] |
| node01.srv.world +----------+----------+ node02.srv.world |
+----------------------+ | +----------------------+
|
|10.0.0.53
+-----------------------+
| [ Cluster Node#3 ] |
+ node03.srv.world |
+-----------------------+
|
| [1] | |
| [2] | 既存のクラスターにノードを新規追加します。 |
|
[root@node01 ~]# pcs status Cluster name: ha_cluster Cluster Summary: * Stack: corosync (Pacemaker is running) * Current DC: node01.srv.world (version 3.0.0-5.el10-1353d31) - partition with quorum * Last updated: Wed Feb 26 10:44:12 2025 on node01.srv.world * Last change: Wed Feb 26 10:38:23 2025 by root via root on node01.srv.world * 2 nodes configured * 1 resource instance configured Node List: * Online: [ node01.srv.world node02.srv.world ] Full List of Resources: * scsi-shooter (stonith:fence_scsi): Started node01.srv.world Daemon Status: corosync: active/enabled pacemaker: active/enabled pcsd: active/enabled # 新規ノードの認証を確立 [root@node01 ~]# pcs host auth node03.srv.world
Username: hacluster
Password:
node03.srv.world: Authorized
# 新規ノードを追加 [root@node01 ~]# pcs cluster node add node03.srv.world No addresses specified for host 'node03.srv.world', using 'node03.srv.world' Disabling sbd... node03.srv.world: sbd disabled Sending 'corosync authkey', 'pacemaker authkey', 'pcs_settings.conf' to 'node03.srv.world' node03.srv.world: successful distribution of the file 'corosync authkey' node03.srv.world: successful distribution of the file 'pacemaker authkey' node03.srv.world: successful distribution of the file 'pcs_settings.conf' Sending updated corosync.conf to nodes... node02.srv.world: Succeeded node03.srv.world: Succeeded node01.srv.world: Succeeded node01.srv.world: Corosync configuration reloaded |
| [3] | フェンスデバイスの設定を更新します。 当例のようにフェンスデバイスに SCSI フェンシングを設定している場合は、新規追加ノードでフェンスデバイス用の共有ストレージにログインして、SCSI フェンスエージェントをインストールしておきます ([2], [3])。 その後、以下のようにフェンスデバイスの設定を更新します。 |
|
# フェンスデバイスのリストを更新 [root@node01 ~]# pcs stonith update scsi-shooter pcmk_host_list="node01.srv.world node02.srv.world node03.srv.world" [root@node01 ~]# pcs stonith config scsi-shooter
Resource: scsi-shooter (class=stonith type=fence_scsi)
Attributes: scsi-shooter-instance_attributes
devices=/dev/disk/by-id/wwn-0x60014057008c2012b3b4ce2ac6d7e0f7
pcmk_host_list="node01.srv.world node02.srv.world node03.srv.world"
Meta Attributes: scsi-shooter-meta_attributes
provides=unfencing
Operations:
monitor: scsi-shooter-monitor-interval-60s
interval=60s
|
| [4] | 既存のクラスターにすでにリソースを設定している場合は、フェイルオーバーした際に正常に新規追加ノードがアクティブとなれるように、各リソース用の設定が必要です。 例として、こちらのように LVM 共有ストレージを設定している場合は、新規追加ノードで、事前に LVM 共有ストレージを認識させておく必要があります。 |
|
[root@node03 ~]#
vi /etc/lvm/lvm.conf # 1410行目 : コメント解除して変更 system_id_source = " uname "
[root@node03 ~]#
iscsiadm -m discovery -t sendtargets -p 10.0.0.30 10.0.0.30:3260,1 iqn.2024-12.world.srv:dlp.target02 10.0.0.30:3260,1 iqn.2024-12.world.srv:dlp.target01
[root@node03 ~]#
iscsiadm -m node --login --target iqn.2024-12.world.srv:dlp.target02
[root@node03 ~]#
[root@node03 ~]# iscsiadm -m session -o show tcp: [1] 10.0.0.30:3260,1 iqn.2024-12.world.srv:dlp.target02 (non-flash) tcp: [2] 10.0.0.30:3260,1 iqn.2024-12.world.srv:dlp.target01 (non-flash) lvmdevices --adddev /dev/sdb1 [root@node03 ~]# lvm pvscan --cache --activate ay pvscan[1951] PV /dev/vda3 online, VG cs is complete. pvscan[1951] PV /dev/sdb1 ignore foreign VG. pvscan[1951] VG cs run autoactivation. 2 logical volume(s) in volume group "cs" now active |
| [5] |
既存のクラスターにすでにリソースを設定している場合は、フェイルオーバーした際に正常に新規追加ノードがアクティブとなれるように、各リソース用の設定が必要です。 |
| [6] | 各リソース用の設定が全て終了したら、新規追加ノードのクラスターサービスを起動します。 |
|
# 新規追加ノード起動 [root@node01 ~]# pcs cluster start node03.srv.world node03.srv.world: Starting Cluster... [root@node01 ~]# pcs cluster enable node03.srv.world node03.srv.world: Cluster Enabled pcs status
Cluster name: ha_cluster
Cluster Summary:
* Stack: corosync (Pacemaker is running)
* Current DC: node02.srv.world (version 3.0.0-5.el10-1353d31) - partition with quorum
* Last updated: Wed Feb 26 13:02:06 2025 on node01.srv.world
* Last change: Wed Feb 26 13:01:55 2025 by hacluster via hacluster on node02.srv.world
* 3 nodes configured
* 5 resource instances configured
Node List:
* Online: [ node01.srv.world node02.srv.world node03.srv.world ]
Full List of Resources:
* scsi-shooter (stonith:fence_scsi): Started node01.srv.world
* Resource Group: ha_group:
* lvm_ha (ocf:heartbeat:LVM-activate): Started node01.srv.world
* httpd_fs (ocf:heartbeat:Filesystem): Started node01.srv.world
* httpd_vip (ocf:heartbeat:IPaddr2): Started node01.srv.world
* website (ocf:heartbeat:apache): Started node01.srv.world
Daemon Status:
corosync: active/enabled
pacemaker: active/enabled
pcsd: active/enabled
|
| [7] | フェンシングを実行して、新規追加ノードに正常にフェイルオーバーするか確認します。 |
|
[root@node03 ~]#
[root@node03 ~]# pcs stonith fence node01.srv.world Node: node01.srv.world fenced pcs status
Cluster name: ha_cluster
Cluster Summary:
* Stack: corosync (Pacemaker is running)
* Current DC: node02.srv.world (version 3.0.0-5.el10-1353d31) - partition with quorum
* Last updated: Wed Feb 26 13:03:08 2025 on node03.srv.world
* Last change: Wed Feb 26 13:01:55 2025 by hacluster via hacluster on node02.srv.world
* 3 nodes configured
* 5 resource instances configured
Node List:
* Online: [ node02.srv.world node03.srv.world ]
* OFFLINE: [ node01.srv.world ]
Full List of Resources:
* scsi-shooter (stonith:fence_scsi): Started node02.srv.world
* Resource Group: ha_group:
* lvm_ha (ocf:heartbeat:LVM-activate): Started node02.srv.world
* httpd_fs (ocf:heartbeat:Filesystem): Started node02.srv.world
* httpd_vip (ocf:heartbeat:IPaddr2): Started node02.srv.world
* website (ocf:heartbeat:apache): Started node02.srv.world
Daemon Status:
corosync: active/enabled
pacemaker: active/enabled
pcsd: active/enabled
|
| [8] | ノードを削除する場合は、以下のように実行します。 |
|
[root@node01 ~]# pcs status
Cluster name: ha_cluster
Cluster Summary:
* Stack: corosync (Pacemaker is running)
* Current DC: node02.srv.world (version 3.0.0-5.el10-1353d31) - partition with quorum
* Last updated: Wed Feb 26 13:04:51 2025 on node01.srv.world
* Last change: Wed Feb 26 13:01:55 2025 by hacluster via hacluster on node02.srv.world
* 3 nodes configured
* 5 resource instances configured
Node List:
* Online: [ node01.srv.world node02.srv.world node03.srv.world ]
Full List of Resources:
* scsi-shooter (stonith:fence_scsi): Started node02.srv.world
* Resource Group: ha_group:
* lvm_ha (ocf:heartbeat:LVM-activate): Started node02.srv.world
* httpd_fs (ocf:heartbeat:Filesystem): Started node02.srv.world
* httpd_vip (ocf:heartbeat:IPaddr2): Started node02.srv.world
* website (ocf:heartbeat:apache): Started node02.srv.world
Daemon Status:
corosync: active/enabled
pacemaker: active/enabled
pcsd: active/enabled
[root@node01 ~]# pcs cluster node remove node03.srv.world Destroying cluster on hosts: 'node03.srv.world'... node03.srv.world: Successfully destroyed cluster Sending updated corosync.conf to nodes... node02.srv.world: Succeeded node01.srv.world: Succeeded node01.srv.world: Corosync configuration reloaded # フェンスデバイスのリストを更新 [root@node01 ~]# pcs stonith update scsi-shooter pcmk_host_list="node01.srv.world node02.srv.world"
pcs status
Cluster name: ha_cluster
Cluster Summary:
* Stack: corosync (Pacemaker is running)
* Current DC: node02.srv.world (version 3.0.0-5.el10-1353d31) - partition with quorum
* Last updated: Wed Feb 26 13:05:48 2025 on node01.srv.world
* Last change: Wed Feb 26 13:05:37 2025 by root via root on node01.srv.world
* 2 nodes configured
* 5 resource instances configured
Node List:
* Online: [ node01.srv.world node02.srv.world ]
Full List of Resources:
* scsi-shooter (stonith:fence_scsi): Started node02.srv.world
* Resource Group: ha_group:
* lvm_ha (ocf:heartbeat:LVM-activate): Started node02.srv.world
* httpd_fs (ocf:heartbeat:Filesystem): Started node02.srv.world
* httpd_vip (ocf:heartbeat:IPaddr2): Started node02.srv.world
* website (ocf:heartbeat:apache): Started node02.srv.world
Daemon Status:
corosync: active/enabled
pacemaker: active/enabled
pcsd: active/enabled
|
| Sponsored Link |
|
|