溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

發(fā)布時(shí)間:2021-11-15 15:49:50 來(lái)源:億速云 閱讀:300 作者:小新 欄目:云計(jì)算

這篇文章主要介紹 Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!


centos7配置pacemaker官方文檔地址:

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/High_Availability_Add-On_Administration/ch-startup-HAAA.html

pacemaker使用翻譯: http://clusterlabs.org/doc/zh-CN/Pacemaker/1.1/html-single/Clusters_from_Scratch/

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

Pacemaker’s key features include:

  • 監(jiān)測(cè)并恢復(fù)節(jié)點(diǎn)和服務(wù)級(jí)別的故障

  • 存儲(chǔ)無(wú)關(guān),并不需要共享存儲(chǔ)

  • 資源無(wú)關(guān),任何能用腳本控制的資源都可以作為服務(wù)

  • Supports  fencing (also referred to as the  STONITH acronym,  deciphered later on) for ensuring data integrity

  • 支持大型或者小型的集群

  • Supports both quorate and resource-driven clusters

  • Supports practically any redundancy configuration

  • 自動(dòng)同步各個(gè)節(jié)點(diǎn)的配置文件

  • 可以設(shè)定集群范圍內(nèi)的ordering, colocation and anti-colocation

  • Support for advanced service types

    • Clones:為那些要在多個(gè)節(jié)點(diǎn)運(yùn)行的服務(wù)所準(zhǔn)備的

    • Multi-state: for services with multiple modes (e.g. master/slave, primary/secondary)

  • Unified, scriptable cluster management tools

本次實(shí)驗(yàn)環(huán)境:

centos7.1 

node31:172.31.2.31

node32 :  172.31.2.32

node31、node32兩臺(tái)機(jī)器上面都安裝pacemaker,因此下述操作都需要在兩天機(jī)器上面執(zhí)行。

1、配置防火墻端口及關(guān)閉selinux

systemctl  disable firewalld

systemctl stop firewalld

iptables -F

2、配置hostname:

 hostnamectl --static --transient  set-hostname node31

 hostnamectl --static --transient  set-hostname node32

vim /etc/hosts

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

3、時(shí)間同步:

yum install ntp -y

ntpdate cn.pool.ntp.org

4、雙機(jī)互信(本次實(shí)驗(yàn)發(fā)現(xiàn),不配置雙機(jī)互信似乎也不會(huì)出現(xiàn)問(wèn)題):

ssh-keygen -t rsa

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

注:在node32執(zhí)行同樣的互信操作。

5、安裝pacemaker集群相關(guān)組件:

yum install pcs  pacemaker  corosync  fence-agents-all -y   

6、啟動(dòng)pcsd服務(wù)(開(kāi)機(jī)自啟動(dòng))

systemctl  start pcsd . service

systemctl  enable pcsd . service

7、創(chuàng)建集群用戶:

passwd hacluster(此用戶在安裝pcs時(shí)候會(huì)自動(dòng)創(chuàng)建)

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

9,創(chuàng)建并啟動(dòng)名為my_cluster的集群,其中node31 node32為集群成員:

pcs cluster setup --start --name my_cluster node31 node32

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

11、查看并設(shè)置集群屬性:

查看當(dāng)前集群狀態(tài):

pcs cluster status

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

 

 

檢查pacemaker服務(wù):

ps aux | grep pacemaker

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

12、pcs resource資源屬性配置:

Pacemaker / Corosync 是 Linux 下一組常用的高可用集群系統(tǒng)。Pacemaker 本身已經(jīng)自帶了很多常用應(yīng)用的管理功能。但是如果要使用 Pacemaker 來(lái)管理自己實(shí)現(xiàn)的服務(wù)或是一些別的沒(méi)現(xiàn)成的東西可用的服務(wù)時(shí),就需要自己實(shí)現(xiàn)一個(gè)資源了。

其中Pacemaker 自帶的資源管理程序都在 /usr/lib/ocf/resource.d 下。其中的 heartbeat 目錄中就包含了那些自帶的常用服務(wù)。那些服務(wù)的腳本可以作為我們自己實(shí)現(xiàn)時(shí)候的參考。

更多關(guān)于自定義資源請(qǐng)參考博文: http://blog.csdn.net/tantexian/article/details/50160159

 

接下來(lái)針對(duì)一些常用的pcs命令進(jìn)行簡(jiǎn)要講解。

 

查看pcs resource針對(duì)資源操作用法:

pcs resource help

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

 

查看pcs支持的資源代理標(biāo)準(zhǔn):

pcs resource providers

Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置

 

具體apache用法:

pcs resource describe ocf:heartbeat:apache

以上是“ Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI