web-dev-qa-db-ja.com

Ubuntu 18.04上のPacemakerを使用するSQL Server、「リソースはnotify = trueで構成する必要があります」

3台のUbuntuマシンでPacemakerを構成しようとしていますが、次のようになっています Microsoftの指示

完了すると、すべてのクラスターノードがブロックされ、リソース以外が開始されます。 corosync.logから読み取れるエラーは次のとおりです。

リソースはnotify = trueで構成する必要があります

pcsステータス:

Cluster name: ag_cluster
Stack: corosync
Current DC: serv-01 (version 1.1.18-2b07d5c5a9) - partition with quorum
Last updated: Wed Apr 29 11:29:03 2020
Last change: Wed Apr 29 09:51:23 2020 by root via crm_resource on serv-01

3 nodes configured
4 resources configured

Online: [ serv-01 serv-02 serv-03 ]

Full list of resources:

 Master/Slave Set: ag_cluster-master [ag_cluster]
     ag_cluster (ocf::mssql:ag):        FAILED serv-01 (blocked)
     ag_cluster (ocf::mssql:ag):        FAILED serv-02 (blocked)
     ag_cluster (ocf::mssql:ag):        FAILED serv-03 (blocked)
 virtualip      (ocf::heartbeat:IPaddr2):       Stopped

Failed Actions:
* ag_cluster_stop_0 on serv-01 'not configured' (6): call=33, status=complete, exitreason='Resource must be configured with notify=true',
    last-rc-change='Wed Apr 29 09:50:16 2020', queued=0ms, exec=64ms
* ag_cluster_stop_0 on serv-02 'not configured' (6): call=30, status=complete, exitreason='Resource must be configured with notify=true',
    last-rc-change='Wed Apr 29 09:50:16 2020', queued=0ms, exec=73ms
* ag_cluster_stop_0 on serv-03 'not configured' (6): call=30, status=complete, exitreason='Resource must be configured with notify=true',
    last-rc-change='Wed Apr 29 09:50:16 2020', queued=0ms, exec=68ms


Daemon Status:
  corosync: active/enabled
  pacemaker: active/enabled
  pcsd: active/enabled

このcmdが実行され、リソースは次のように構成されています。

Sudo pcs resource create ag_cluster ocf:mssql:ag ag_name=ag1 meta failure-timeout=30s --master meta notify=true
1
Andrei.N

pcs resource create ag_cluster ocf:mssql:ag ag_name = my_ag1 meta failure-timeout = 30s master notify = true

マスターの前に-を削除します。 Microsoftはドキュメントを作成しました:)

1
Greg Wellbrock

@Gregお問い合わせいただきありがとうございます。クラスター全体を再作成し、更新されたコマンドbeclusive(-)masterを実行した後、何も変更されていません。ログはそれをすべて言います:

enter image description here 現在のクラスターのステータスは次のようになります。

enter image description here

0
Andrei.N