web-dev-qa-db-ja.com

CentOS 6.4iSCSIターゲット-crmシェルエラー

私は、DRBD、Pacemaker、Open-iSCSI、およびLVM2を使用してCentOS6.4でiSCSIターゲットを作成しようとしています。

次に、crmシェルでHA iSCSIターゲット構成を準備する必要がありますが、構成モードに入ると、エラーメッセージが表示されます。

[root@centos ~]# crm
crm(live)# configure
ERROR: running cibadmin -Q1: Could not establish cib_rw connection: Connection refused (111)
Signon to CIB failed: Transport endpoint is not connected
Init failed, could not perform requested operations

Crmは最新のpacemaker-cliパッケージに含まれていないため、パッケージをインストールする前に this OpenSUSERepoを追加しましたcrmsh.x86_64

cat/var/log/messages | grep corosync:

corosync[1052]:   [MAIN  ] Compatibility mode set to whitetank. Using V1 and V2 of the synchronization engine.
corosync[1052]:   [TOTEM ] A processor joined or left the membership and a new membership was formed.
corosync[1052]:   [CPG   ] chosen downlist: sender r(0) ip(127.0.0.1) ; members(old:0 left:0)
pacemakerd[1259]:   error: find_corosync_variant: Corosync is running, but Pacemaker could not find the CMAN or Pacemaker plugin loaded 
corosync[1052]:   [TOTEM ] The network interface [192.168.1.101] is now up.
corosync[1052]:   [TOTEM ] A processor joined or left the membership and a new membership was formed.
corosync[1052]:   [CPG   ] chosen downlist: sender r(0) ip(127.0.0.1) ; members(old:0 left:0)
corosync[1052]:   [MAIN  ] Completed service synchronization, ready to provide service.

cat/var/log/messages | grepペースメーカー:

pacemakerd[1251]:   error: find_corosync_variant: Corosync is running, but Pacemaker could not find the CMAN or Pacemaker plugin loaded
pacemakerd[1251]:   notice: get_cluster_type: This installation does not support the ´(null)´ cluster infrastructure: terminating.
1
user191159

crmshpss​​hを除いて、Suseリポジトリからは何も使用しないでください。 CentOSが提供するcorosyncなどを上書きしないように、リポジトリファイルにincludepkgs=crmsh,psshという行を追加する必要があります。

CentOS 6.4でcorosyncを使用するためにサポートされている唯一の方法は、cmanを介して使用することです。 -)したがって、corosyncを直接開始するのではなく、cmanを開始してから、ペースメーカーを開始します。設定は/etc/cluster/cluster.confを介して行われ、これはcmanにcorosyncの開始方法を指示します。

詳細については、次のページを参照してください。 RHEL6.4のPacemaker および PacemakerおよびRHEL 6.4(Redux)

1
Federico Sierra