ubuntu2004安装corosync和pacemaker并为集群添加浮动IP

简介: ubuntu2004安装corosync和pacemaker并为集群添加浮动IP

环境

节点

IP

storage01

10.141.161.11

storage02

10.141.161.12

安装包(两个节点都要安装)

apt install pacemaker corosync pcs

启用pcsd服务(两个节点都要执行)

systemctl enable --now pcsd

配置hacluster密码(两个节点都要执行)

root@storage01:~# passwd haclusterChanging password for user hacluster.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.

组成cluster,仅在其中一个节点上执行即可,因为我是首次添加,增加–force选项,可以避免不少问题

pcs cluster setup cluster storage01 storage02 --force

开启服务,仅在其中一个节点上执行即可

pcs cluster start --all

启用服务,仅在其中一个节点上执行即可

pcs cluster enable --all

查看集群状态,假如跟下述一样,显示有某个节点offline,可以选择等待一下,我这两个节点花了一点时间才同步的

root@storage01:~# pcs cluster statusCluster Status:
 Cluster Summary:
   * Stack: corosync
   * Current DC: storage01 (version 2.0.3-4b1f869f0f) - partition WITHOUT quorum
   * Last updated: Tue Dec 2707:42:45 2022   * Last change:  Tue Dec 2707:40:34 2022 by hacluster via crmd on storage01
   * 2 nodes configured
   * 0 resource instances configured
 Node List:
   * Online: [ storage01 ]
   * OFFLINE: [ storage02 ]
PCSD Status:
  storage01: Online
  storage02: Online

等待一会后,再次查看状态

root@storage01:~# pcs cluster statusCluster Status:
 Cluster Summary:
   * Stack: corosync
   * Current DC: storage02eth (version 2.0.3-4b1f869f0f) - partition with quorum
   * Last updated: Wed Dec 2802:25:19 2022   * Last change:  Wed Dec 2802:25:12 2022 by root via cibadmin on storage01eth
   * 2 nodes configured
   * 1 resource instance configured
 Node List:
   * Online: [ storage01 storage02 ]
PCSD Status:
  storage01: Online
  storage02: Online

我们可以开始添加浮动IP了(网卡名和label加起来不能超过15个字符,否则会报错)

pcs resource create mgmtd_ip ocf:heartbeat:IPaddr2 ip=10.141.161.19 cidr_netmask=32nic=enp183s0f0 iflabel=mgm op monitor interval=30s

查看状态

root@storage01:~# pcs statusCluster name: ha_cluster
WARNINGS:
No stonith devices and stonith-enabled is not falseCluster Summary:
  * Stack: corosync
  * Current DC: storage02eth (version 2.0.3-4b1f869f0f) - partition with quorum
  * Last updated: Wed Dec 2802:24:18 2022  * Last change:  Wed Dec 2802:21:25 2022 by root via cibadmin on storage01eth
  * 2 nodes configured
  * 1 resource instance configured
Node List:
  * Online: [ storage01 storage02 ]
Full List of Resources:
  * mgmtd_ip    (ocf::heartbeat:IPaddr2):        FAILED (Monitoring) [ storage02 storage01 ]
Failed Resource Actions:
  * mgmtd_ip_monitor_0 on storage02eth 'not configured' (6): call=5, status='complete', exitreason='Interface label [enp183s0f0:fl-mgm] exceeds maximum character limit of 15', last-rc-change='2022-12-28 02:21:25Z', queued=0ms, exec=44ms
  * mgmtd_ip_monitor_30000 on storage02eth 'not configured' (6): call=6, status='complete', exitreason='Interface label [enp183s0f0:fl-mgm] exceeds maximum character limit of 15', last-rc-change='2022-12-28 02:21:25Z', queued=0ms, exec=42ms
  * mgmtd_ip_monitor_0 on storage01eth 'not configured' (6): call=5, status='complete', exitreason='Interface label [enp183s0f0:fl-mgm] exceeds maximum character limit of 15', last-rc-change='2022-12-28 02:21:25Z', queued=0ms, exec=40ms
Daemon Status:
  corosync: active/enabled
  pacemaker: active/enabled
  pcsd: active/enabled

可能会提示失败,还缺少这一步

pcs property setstonith-enabled=false

重新查看状态

root@storage01:~# pcs statusCluster name: ha_cluster
Cluster Summary:
  * Stack: corosync
  * Current DC: storage02eth (version 2.0.3-4b1f869f0f) - partition with quorum
  * Last updated: Wed Dec 2802:39:45 2022  * Last change:  Wed Dec 2802:39:23 2022 by root via cibadmin on storage01eth
  * 2 nodes configured
  * 1 resource instance configured
Node List:
  * Online: [ storage01 storage02 ]
Full List of Resources:
  * mgmtd_ip    (ocf::heartbeat:IPaddr2):        Started storage01
Daemon Status:
  corosync: active/enabled
  pacemaker: active/enabled
  pcsd: active/enabled

接下来查看ip,应该浮动ip就会存在了


目录
相关文章
|
1月前
|
并行计算 PyTorch TensorFlow
Ubuntu安装笔记(一):安装显卡驱动、cuda/cudnn、Anaconda、Pytorch、Tensorflow、Opencv、Visdom、FFMPEG、卸载一些不必要的预装软件
这篇文章是关于如何在Ubuntu操作系统上安装显卡驱动、CUDA、CUDNN、Anaconda、PyTorch、TensorFlow、OpenCV、FFMPEG以及卸载不必要的预装软件的详细指南。
3552 3
|
11天前
|
Ubuntu 开发工具 git
Ubuntu安装homebrew的完整教程
本文介绍了如何在没有公网的情况下安装 Homebrew。首先访问 Homebrew 官网,然后通过阿里云的镜像克隆安装脚本,并创建普通用户进行安装。接着修改 `install.sh` 文件指向国内镜像,执行安装命令。最后配置环境变量并更换 Homebrew 源为国内镜像,确保安装顺利。
113 50
|
1月前
|
Ubuntu Linux 测试技术
Linux系统之Ubuntu安装cockpit管理工具
【10月更文挑战第13天】Linux系统之Ubuntu安装cockpit管理工具
129 4
Linux系统之Ubuntu安装cockpit管理工具
|
1月前
|
Ubuntu 应用服务中间件 nginx
Ubuntu安装笔记(三):ffmpeg(3.2.16)源码编译opencv(3.4.0)
本文是关于Ubuntu系统中使用ffmpeg 3.2.16源码编译OpenCV 3.4.0的安装笔记,包括安装ffmpeg、编译OpenCV、卸载OpenCV以及常见报错处理。
147 2
Ubuntu安装笔记(三):ffmpeg(3.2.16)源码编译opencv(3.4.0)
|
1月前
|
Ubuntu Linux C语言
Ubuntu安装笔记(二):ubuntu18.04编译安装opencv 3.4.0 opencv_contrib3.4.0
本文介绍了在Ubuntu 18.04系统上编译安装OpenCV 3.4.0及其扩展包opencv_contrib 3.4.0的详细步骤,包括下载源码、安装依赖、配置CMake和编译安装,以及常见问题的解决方法。
97 1
Ubuntu安装笔记(二):ubuntu18.04编译安装opencv 3.4.0 opencv_contrib3.4.0
|
7天前
|
Ubuntu Java
Ubuntu之jdk安装
以下是Ubuntu之jdk安装的详细内容
19 0
|
1月前
|
Kubernetes Ubuntu Docker
从0开始搞K8S:使用Ubuntu进行安装(环境安装)
通过上述步骤,你已经在Ubuntu上成功搭建了一个基本的Kubernetes单节点集群。这只是开始,Kubernetes的世界广阔且深邃,接下来你可以尝试部署应用、了解Kubernetes的高级概念如Services、Deployments、Ingress等,以及探索如何利用Helm等工具进行应用管理,逐步提升你的Kubernetes技能树。记住,实践是最好的老师,不断实验与学习,你将逐渐掌握这一强大的容器编排技术。
137 1
|
1月前
|
Ubuntu Linux
软件安装(五):Ubuntu 18.04安装Teamviewer 看一遍就会
这篇文章介绍了在Ubuntu 18.04系统上通过图形界面和命令行两种方法安装TeamViewer远程控制软件的步骤。
31 2
|
20天前
|
消息中间件 Ubuntu Java
Ubuntu系统上安装Apache Kafka
Ubuntu系统上安装Apache Kafka
|
26天前
|
Ubuntu Linux
Ubuntu 16.04下无法安装.deb的解决方法
希望以上策略能有效协助您克服在Ubuntu 16.04中安装.deb文件时遇到的挑战。
26 0