최근에 가상 IP를 관리하기 위해 Pacemaker와 Corosync를 설치했습니다.
문제는 모든 노드에서 리소스(가상 IP)를 중지하려고 할 때 중지 명령이 중단된다는 것입니다.
[root@isis ~]# sudo pcs cluster stop --all
isis: Stopping Cluster...
내 구성은 다음과 같습니다
[root@isis ~]# sudo pcs status
Cluster name: cluster-osiris
Last updated: Mon Dec 8 00:09:29 2014
Last change: Mon Dec 8 00:09:24 2014 via cibadmin on isis
Stack: corosync
Current DC: horus (2) - partition with quorum
Version: 1.1.10-32.el7_0.1-368c726
2 Nodes configured
2 Resources configured
Online: [ horus isis ]
Full list of resources:
HAproxy (systemd:haproxy): Started horus
ClusterIP-01 (ocf::heartbeat:IPaddr2): Started isis
PCSD Status:
isis: Online
horus: Online
Daemon Status:
corosync: active/enabled
pacemaker: active/enabled
pcsd: active/enabled
노드별로 클러스터 노드를 중지하면 정상적으로 작동합니다.
[root@isis ~]# sudo pcs cluster stop horus
horus: Stopping Cluster...
[root@isis ~]# sudo pcs cluster stop isis
isis: Stopping Cluster...
[root@isis ~]# sudo pcs status
Error: cluster is not currently running on this node
이 문제를 해결하도록 도와주시겠어요?
감사해요!
답변1
목표가 클러스터의 모든 노드에서 리소스가 실행되는 것을 방지하는 것이라면 다음을 사용하여 리소스를 비활성화해야 합니다.
pcs resource disable ClusterIP-01
명령은 sudo pcs cluster stop --all
클러스터 자체(및 클러스터에서 제어하는 모든 리소스)를 종료합니다.