corosync+pacemaker+crm简单配置

简介:

# 系统 centos7.2      安装版本都是Yum源

 node1: 192.168.8.111    

 node2:192.168.8.112   

 vip     :192.168.8.200

 nfs     :192.168.8.113 


# 互信

~] ssh-keygen

~]# cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys

~]# chmod go= .ssh/authorized_keys

~]# scp -p .ssh/id_rsa .ssh/authorized_keys node1:/root/.ssh/


# 安装pcs

~]# ansible ha -m service -a "name=pcs state=installd"


# 同步时间

~]# ntpdate 192.168.9.19;ssh node2 ntpdate 192.168.9.19


# 启动服务

~]# ansible ha -m service -a "name=pcsd state=started enabled=yes"


# 设置hacluster密码

~]# ansible ha -m shell -a 'echo "xiong" | passwd --stdin hacluster' 


# 认证集群服务

~]# pcs cluster auth node1 node2

Username: hacluster

Password: 

node1: Authorized

node2: Authorized


# 将两个节点加入集群服务内 --name集群名称 节点 广播地址

~]# pcs cluster setup --name myha node1 node2 

Shutting down pacemaker/corosync services...

Redirecting to /bin/systemctl stop  pacemaker.service

Redirecting to /bin/systemctl stop  corosync.service

Killing any remaining services...

Removing all cluster configuration files...

node1: Succeeded

node2: Succeeded

Synchronizing pcsd certificates on nodes node1, node2...

node1: Success

node2: Success


Restaring pcsd on the nodes in order to reload the certificates...

node1: Success

node2: Success


# 加入集群之后会产生corosync配置文件

~]# ls /etc/corosync/

corosync.conf  corosync.conf.example  corosync.conf.example.udpu  corosync.xml.example  uidgid.d


# 启动pcs服务

~]# pcs cluster start --all

node2: Starting Cluster...

node1: Starting Cluster...


# 跟踪查看日志

tail -f  /var/log/cluster/corosync.log


# 查看通信是否正常

~]# corosync-cfgtool -s

Printing ring status.

Local node ID 1

RING ID 0

id= 127.0.0.1 # 当为127.0.0.1时说明集群是失败的 更改/etc/hosts将127.0.0.1 主机名删除 只留默认项

status= ring 0 active with no faults


Current DC: 指定的协调员


# crmsh yum源

[network_ha-clustering_Stable]

name=Stable High Availability/Clustering packages (CentOS_CentOS-7)

type=rpm-md

baseurl=http://download.opensuse.org/repositories/network:/ha-clustering:/Stable/CentOS_CentOS-7/

gpgcheck=1

gpgkey=http://download.opensuse.org/repositories/network:/ha-clustering:/Stable/CentOS_CentOS-7//repodata/repomd.xml.key

enabled=1


# 安装crmsh pssh  在哪台机器上操作就安哪一台就成

~]# yum -y install crmsh pssh


# nfs配置

~]# ansible ha -m yum -a "name=nfs-utils state=installed"

~]# vim /etc/exports

/opt/pages      192.168.8.0/24(rw)


# 安装nginx并测试nfs挂载是否生效

~]# ansible ha -m yum -a "name=nginx state=installed"

~]# ansible ha -m shell -a "mount -t nfs 192.168.8.113:/opt/pages /usr/share/nginx/html/"

~]# ansible ha -m shell -a  "systemctl start nginx"


~]# ansible ha -m shell -a  "umount /usr/share/nginx/html"


~]# ansible ha -m shell -a  "df -Th"




# 每次操作需要先 verify 最后完成之后再执行 commit

# 定义虚拟IP地址

crm(live)configure# primitive vip ocf:heartbeat:IPaddr2 params ip="192.168.8.200"

# 定义nginx服务

crm(live)configure# primitive vipservice systemd:nginx op monitor interval=30s timeout=20s

# 定义NFS服务

crm(live)configure# primitive vipnfs ocf:heartbeat:Filesystem params device="192.168.8.113:/opt/pages" directory="/usr/share/nginx/html/" fstype="nfs" op start timeout=60s op stop timeout=60s op  monitor timeout=40 interval=20


# 定义排列约束,   解析: A ( B C )   AB AC   vipservice即要跟vip也得跟vipnfs在一起

crm(live)configure# colocation vipservice_with_vip_and_vipnfs inf: vipservice ( vip vipnfs )


# 定义顺序约束 启动顺序    强制先启动 vip再启动 vipnfs

crm(live)configure# order vipnfs_after_vip  Mandatory: vip vipnfs


# 强制先启动 vipnfs 再启动 vipservice 

crm(live)configure# order vipservice_after_vipnfs Mandatory: vipnfs vipservice



# 检查服务是否正常

crm(live)# status

Last updated: Thu May 18 16:00:41 2017Last change: Thu May 18 16:00:36 2017 by root via cibadmin on node1

Stack: corosync

Current DC: node2 (version 1.1.13-10.el7-44eb2dd) - partition with quorum

2 nodes and 3 resources configured


Online: [ node1 node2 ]


Full list of resources:


 vip(ocf::heartbeat:IPaddr2):Started node1

 vipservice(systemd:nginx):Started node1

 vipnfs(ocf::heartbeat:Filesystem):Started node1



# 退出crmsh

# 分别执行ss -tnl | grep 80      df -Th    ip addr show  最后执行完成有  将node1强制成为standby检查node2节点


# 设置vip资源黏性为100 倾向于node1  

crm(live)configure# location node1_vip vip 100: node1




# 常见错误

# Node node1: UNCLEAN (offline)   检查 corosync-cfgtools -s 查看IP地址是不是127.0.0.1如果是删除127.1配置的主机名称

[root@node2 ~]# pcs status

Cluster name: myha

WARNING: no stonith devices and stonith-enabled is not false

Last updated: Wed May 17 15:34:53 2017Last change: Wed May 17 15:31:50 2017 by hacluster via crmd on node2

Stack: corosync

Current DC: node2 (version 1.1.13-10.el7-44eb2dd) - partition WITHOUT quorum

2 nodes and 0 resources configured


Node node1: UNCLEAN (offline)

Online: [ node2 ]


# WARNING: no stonith devices and stonith-enabled is not false

解决:  pcs property set stonith-enabled=false




     本文转自812374156 51CTO博客,原文链接:http://blog.51cto.com/xiong51/1927204,如需转载请自行联系原作者



相关文章
|
6月前
【Vue3+TypeScript】CRM系统项目搭建之 — 路由配置
【Vue3+TypeScript】CRM系统项目搭建之 — 路由配置
35 0
|
24天前
|
供应链 监控 搜索推荐
企业销售管理利器:销售易、飞鱼和800客CRM深度解析
- **销售易**:集营销、销售和服务于一体,提供全渠道获客、潜客识别、线索转化等功能,适合中大型企业,尤其适用于快消品、汽车等行业。 - **飞鱼**:由巨量引擎推出,专注于广告主的销售线索管理,实现自动获取、同步及跟进,适合各类规模企业,广泛应用于电商、金融等领域。 - **800客**:功能全面,涵盖市场、客户、销售、服务等管理模块,适合中小型到大型企业,提供定制化服务,满足个性化需求。 通过对比各产品的功能与适用场景,企业可根据自身需求选择最合适的CRM解决方案,以优化销售流程并深化客户关系。
|
10天前
|
搜索推荐 数据可视化 数据挖掘
CRM助力企业:个性化工作进度管理与快速汇总
在现代企业运营中,高效的工作进度管理至关重要。CRM系统不仅助力客户管理,还通过个性化工作进度汇集管理提升整体管理质量。本文探讨如何利用CRM实现这一目标,涵盖任务分配与跟踪、进度更新与反馈、报表与分析及提醒通知等功能,并提供实施步骤和实际案例分析,帮助企业显著提升管理效率和团队协作水平。
|
17天前
|
监控 搜索推荐 数据挖掘
全面剖析:销售易、神州云动与纷享销客CRM的产品功能与适用企业
销售易CRM是一款功能全面的客户关系管理工具,适用于中小企业、成长型及销售驱动型企业。它提供线索管理、商机跟踪、合同管理、客户服务和数据分析等功能,帮助企业高效收集和管理销售线索,优化销售流程,提升客户满意度,并通过多维度数据分析支持决策。系统支持多渠道线索接入,自动筛选分类,全程跟踪商机进展,确保合同履行,并整合多种服务渠道快速响应客户需求。其灵活性和易用性使企业能够快速部署并适应业务变化,助力企业在竞争激烈的市场中实现可持续发展。