真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

成都創(chuàng)新互聯(lián)公司-專(zhuān)業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性?xún)r(jià)比梧州網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式梧州網(wǎng)站制作公司更省心,省錢(qián),快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋梧州地區(qū)。費(fèi)用合理售后完善,十余年實(shí)體公司更值得信賴(lài)。

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)建集群用戶(hù):

passwd hacluster(此用戶(hù)在安裝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)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


名稱(chēng)欄目:Centos7中如何實(shí)現(xiàn)pacemaker高可用安裝配置
轉(zhuǎn)載來(lái)于:http://weahome.cn/article/pscdii.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部