[Linux] CentOS 7 Pacemaker 사용한 HA cluster 구성
1. cluster 구성할 각 노드의 ip 주소를 설정하며, /etc/hosts에 각 노드를 등록합니다. [root@jeongyd01 ~]# cat /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 127.0.1.1 jeongyd01 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 192.168.19.101 jeongyd01 192.168.19.102 jeongyd02 2. cluster 패키지 설치 [root@jeongyd01 ~]# yum install -y pacemaker corosync pcs 3. 방화벽 설정 ..