본문 바로가기

리눅스

우분투에서 pacemaker, corosync, pcs 패키지를 삭제하는 방법

728x90

우분투에서 pacemaker, corosync, pcs 패키지를 삭제하는 방법

1. Pacemaker 클러스터 중지

클러스터 서비스를 중지합니다.

sudo pcs cluster stop --all
$ sudo pcs cluster stop --all
192.168.56.212: Stopping Cluster (pacemaker)...
192.168.56.211: Stopping Cluster (pacemaker)...
192.168.56.212: Stopping Cluster (corosync)...
192.168.56.211: Stopping Cluster (corosync)...

2. Pacemaker 클러스터 비활성화

클러스터를 비활성화하고 부팅 시 자동으로 시작되지 않도록 설정합니다.

sudo pcs cluster disable --all
$ sudo pcs cluster disable --all
192.168.56.211: Cluster Disabled
192.168.56.212: Cluster Disabled

3. Pacemaker, Corosync, PCS 패키지 제거

패키지 관리자를 사용하여 Pacemaker, Corosync 및 PCS 패키지를 삭제합니다.

sudo apt remove --purge pacemaker corosync pcs

4. 설정 파일 및 데이터 삭제

패키지를 제거한 후에도 남아있을 수 있는 설정 파일과 데이터를 삭제합니다. 주의하여 진행하십시오.

sudo rm -rf /etc/corosync /etc/pacemaker /var/lib/pacemaker /var/lib/heartbeat /var/lib/pengine

5. 패키지 관리자 캐시 업데이트

패키지 관리자 캐시를 업데이트하여 시스템이 패키지가 완전히 제거되었음을 인식하도록 합니다.

sudo apt update

 

제거된 패키지와 설정 파일은 시스템에서 완전히 삭제됩니다. 이제 Pacemaker, Corosync 및 PCS가 시스템에서 완전히 제거되었을 것입니다.

 

728x90