HA专题: corosync+pacemaker实现nginx高可用
前言
这几天都会学习高可用集群, 也会将其中的一些实验写出来分享给大家, 这个专题估计会写5篇左右, p.s: 写博客很累的
实验介绍
这次的实验比较简单, 在CentOS7使用corosync
+pacemaker
实现两个节点的nginx
高可用
实验拓扑
实验环境
注意: 本文实验中所有主机SElinux和iptables都是关闭的
node1.anyisalin.com
172.16.1.2
web服务, HA节点
node2.anyisalin.com
172.16.1.3
web服务, HA节点
nfs.anyisalin.com
172.16.1.4
提供nfs服务,网站页面文件
实验步骤
准备工作
高可用集群必须保证所有节点主机互信, 主机名解析一致, 时间同步
配置hosts文件同步
配置互信
时间同步
安装HA集群组件
在RH系6.4之后就可以通过RedHat提供的pcs
来进行对集群”全生命周期”的管理, 我们这里先通过pcs
安装集群并自动生成配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14 1[root@node1 ~]# yum install pcs -y #node1安装pcs
2[root@node1 ~]# ssh node2.anyisalin.com 'yum install pcs -y ' #node2安装pcs
3[root@node1 ~]# echo passwd | passwd --stdin hacluster #设置hacluster用户密码
4[root@node1 ~]# ssh node2.anyisalin.com "echo passwd | passwd --stdin hacluster" #为node2设置hacluster密码
5[root@node1 ~]# systemctl start pcsd ; ssh node2.anyisalin.com "systemctl start pcsd" #启动pcsd
6
7[root@node1 ~]# pcs cluster auth node1.anyisalin.com node2.anyisalin.com -u hacluster #进行认证
8Password:
9node1.anyisalin.com: Authorized
10node2.anyisalin.com: Authorized
11
12[root@node1 ~]# pcs cluster setup --name mycluster node1.anyisalin.com node2.anyisalin.com #安装集群
13[root@node1 ~]# pcs cluster start --all #启动集群
14
安装nginx和配置nfs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 1安装nginx
2
3[root@node1 ~]# yum install nginx -y 注意: 需epel源
4[root@node1 ~]# ssh node2.anyisalin.com "yum install nginx -y "
5[root@node1 ~]# systemctl enable nginx #由于systemd的特性, 需将nginx设置开机自动启动
6[root@node1 ~]# ssh node2.anyisalin.com "systemctl enable nginx"
7
8配置nfs
9[root@nfs ~]# mkdir /www/htdocs -pv
10[root@nfs ~]# echo "<h1>This is NFS on 172.16.1.4</h1>" > /www/htdocs/index.html #创建网页文件
11[root@nfs ~]# vim /etc/exports
12/www/htdocs 172.16.1.0/24(ro)
13
14[root@nfs ~]# systemctl start rpcbind.service
15[root@nfs ~]# systemctl start nfs-server.service #启动nfs-server
16
17测试nfs
18[root@node1 ~]# mount -t nfs 172.16.1.4:/www/htdocs /usr/share/nginx/html/ #挂载成功
19[root@node1 ~]# df
20Filesystem 1K-blocks Used Available Use% Mounted on
21172.16.1.4:/www/htdocs 52403200 1134336 51268864 3% /usr/share/nginx/html
22
23[root@node1 ~]# umount /usr/share/nginx/html/
24
使用crmsh配置集群资源
pcs
用来安装集群还可以, 但是配置集群资源, 我用了一次再也不想用了, 实在是不好用, 个人比较喜欢crmsh
来配置集群,crmsh
大家可以自行去下载, 安装时可能需要epel
源 中的一些软件
1
2
3
4
5
6
7
8
9
10
11
12
13 1[root@node1 ~]# yum install crmsh-2.1.4-1.1.x86_64.rpm #安装crmsh 我们的rpm包是自行下载的
2配置资源
3[root@node1 ~]# crm configure
4crm(live)configure# primitive webip ocf:heartbeat:IPaddr params ip=172.16.1.8
5crm(live)configure# primitive nginx systemd:nginx
6crm(live)configure# primitive webstore ocf:heartbeat:Filesystem params device="172.16.1.4:/www/htdocs" directory="/usr/share/nginx/html" fstype="nfs" op start timeout=60s op stop timeout=60s op monitor interval=20s timeout=40s
7定义资源组
8crm(live)configure# group webservice webip webstore nginx
9crm(live)configure# verify
10crm(live)configure# property stonith-enabled=false
11crm(live)configure# commit
12
13
测试
总结
本文简单演示HA集群的简单实现, 非常的简单. HA最重要的是它的原理, 我以前写过一篇HA原理的博客, 大家可以看看
作者水平很低, 如果有错误及时指出, 如果你觉得本文写的好请点一波赞~(≧▽≦)/~
作者: AnyISaIln QQ: 1449472454
感谢: MageEdu