ansible+heartbeatV2构建高可用群集

主机的ip地址分配

hostname IP address  role 
master 192.168.1.250/24 ansible
node2.mictiger.com 192.168.1.120/24 heartbeat,httpd 
node3.mictiger.com 192.168.1.130/24 heartbeat,httpd 

1)修改hostname

在node2和node3的/etc/hosts加入如下信息

192.168.1.120	node2.mictiger.com	node2
192.168.1.130	node3.mictiger.com	node3

2)建立master到node2,node3的节点互信

生成密钥对

[[email protected] ~]# ssh-keygen -t rsa -P ‘‘    生成一对密钥
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): 
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
dc:a5:7d:fc:ff:42:8c:8a:55:38:73:87:35:9a:f5:6a [email protected]
The key‘s randomart image is:
+--[ RSA 2048]----+
|                 |
|              +  |
|           ..* o |
|       . .++*.. .|
|        S o=.+o. |
|          . ..E. |
|         o . o  .|
|        . .   . .|
|               .+|
+-----------------+

将生成的公钥传到目标主机

[[email protected] ~]# ssh-copy-id -i .ssh/id_rsa.pub [email protected]
[[email protected] ~]# ssh-copy-id -i .ssh/id_rsa.pub [email protected]
[[email protected] ~]# ssh-copy-id -i .ssh/id_rsa.pub [email protected]

在master上验证是否与node2,node3建立互信成功

[[email protected] ~]# ssh 192.168.1.130 ‘date‘;ssh 192.168.1.120 ‘date‘;date
Tue Nov 18 22:39:55 CST 2014
Tue Nov 18 22:40:03 CST 2014
Tue Nov 18 22:40:04 CST 2014

3)安装配置ansible

[[email protected] ~]# yum install ansible
[[email protected] ~]# vim /etc/ansible/hosts   只需要配置这文件配置要管理的主机
[HA]
192.168.1.150
192.168.1.120
192.168.1.130
[web]
192.168.1.120
192.168.1.130
[master]
192.168.1.150

验证ansible是否配置成功

[[email protected] ~]# ansible all -a ‘date‘
192.168.1.120 | success | rc=0 >>
Tue Nov 18 13:40:21 CST 2014

192.168.1.150 | success | rc=0 >>
Tue Nov 18 13:40:21 CST 2014

192.168.1.130 | success | rc=0 >>
Tue Nov 18 13:40:21 CST 2014

4)利用ansible更新时间,高可用群集必须配置一样的时间

[[email protected] ~]# ansible web -a ‘ntpdate  202.118.1.81‘
192.168.1.130 | success | rc=0 >>
18 Nov 22:50:54 ntpdate[21487]: step time server 202.118.1.81 offset 1.531700 sec

192.168.1.120 | success | rc=0 >>
18 Nov 22:50:54 ntpdate[13616]: adjust time server 202.118.1.81 offset 0.313219 sec
将时间更新写入cron
[[email protected] ~]# ansible all -m cron -a ‘name="sync time" minute="*/5" job="/usr/sbin/ntpdate 202.118.1.81 &> /dev/null"‘
192.168.1.130 | success >> {
    "changed": true, 
    "jobs": [
        "sync time"
    ]
}

192.168.1.120 | success >> {
    "changed": true, 
    "jobs": [
        "sync time"
    ]
}

192.168.1.150 | success >> {
    "changed": true, 
    "jobs": [
        "sync time"
    ]
}

5) 安装并配置httpd程序

[[email protected]~]# ansible web -m yum -a ‘name=httpd state=present‘
 [[email protected] ~]# ansible web -a ‘service httpd start‘
192.168.1.130 | success | rc=0 >>
Starting httpd: [  OK  ]httpd: apr_sockaddr_info_get() failed for CentOS
httpd: Could not reliably determine the server‘s fully qualified domain name, using 127.0.0.1 for ServerName

192.168.1.120 | success | rc=0 >>
Starting httpd: [  OK  ]httpd: Could not reliably determine the server‘s fully qualified domain name, using localhost.localdomain for ServerName
[[email protected] ~]# touch index.html
[[email protected] ~]# echo heartbeatV2 > index.html
[[email protected] ~]# scp index.html [email protected]:/var/www/html/
index.html                                                                                                                   100%   16     0.0KB/s   00:00  
[[email protected] ~]# scp index.html [email protected]:/var/www/html/
index.html                                                                                                                   100%   16     0.0KB/s   00:00

验证httpd是否安装成功

[[email protected] ~]# ansible master -a ‘curl  192.168.1.{120,130}‘
192.168.1.150 | success | rc=0 >>
--_curl_--192.168.1.120
heartbeatV2
--_curl_--192.168.1.130
heartbeatV2
[1/2]: 192.168.1.120 --> <stdout>
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0    16    0    16    0     0   5072      0 --:--:-- --:--:-- --:--:--  8000

[2/2]: 192.168.1.130 --> <stdout>
  0    16    0    16    0     0  10349      0 --:--:-- --:--:-- --:--:-- 10349

将httpd程序stop并不让它开机自动启动

[[email protected] ~]# ansible web -a ‘service httpd stop‘
192.168.1.120 | success | rc=0 >>
Stopping httpd: [  OK  ]

192.168.1.130 | success | rc=0 >>
Stopping httpd: [  OK  ]

[[email protected] ~]# ansible web -a ‘chkconfig httpd off‘
192.168.1.120 | success | rc=0 >>

192.168.1.130 | success | rc=0 >>

6)安装heatbeatV2需要处理依赖关系所以没有用ansible

[[email protected] ~]#  rpm -ivh heartbeat-2.1.4-12.el6.x86_64.rpm heartbeat-gui-2.1.4-12.el6.x86_64.rpm heartbeat-stonith-2.1.4-12.el6.x86_64.rpm heartbeat-pils-2.1.4-12.el6.x86_64.rpm 
Preparing...                ########################################### [100%]
   1:heartbeat-pils         ########################################### [ 25%]
   2:heartbeat-stonith      ########################################### [ 50%]
   3:heartbeat              ########################################### [ 75%]
   4:heartbeat-gui          ########################################### [100%]

7)配置heartbeat

[[email protected] ~]# cp /usr/share/doc/heartbeat-2.1.4/{authkeys,ha.cf} /etc/ha.d/
配置authkeys
[[email protected] ha.d]# openssl rand -hex 16    生成16的随机数作为heartbeat传递心跳信息的验证
701782e0e6872f444edd0bbb726871fb
auth 2
#1 crc
#2 sha1 HI!
#3 md5 Hello!
2 sha1 701782e0e6872f444edd0bbb726871f 
[[email protected] ha.d]# chmod 600 authkeys    修改authkeys的权限不让其他人访问
配置heartbeat的主配置文件ha.cf大概配置如下信息(根据个人需求而定)
logfile /var/log/ha-log            日志文件位置
mcast eth0 225.10.10.10 694 1 0    使用组播地址通告和端口
auto_failback on                   自动添加down了又重新上线的节点到群集
node    node2.mictiger.com         配置节点信息
node    node3.mictiger.com

ping 192.168.1.1                   网关地址
配置haresources添加如下信息
node2.mictiger.com       192.168.1.250/24/eth0 httpd    主节点和VIP绑定的网卡,管理的资源
复制node2 的配置信息到node3
[[email protected] ~]# scp -r /etc/ha.d/* [email protected]:/etc/ha.d/

8)启动heartbeat

[[email protected] ~]# ansible web -a ‘service heartbeat start‘
192.168.1.130 | success | rc=0 >>
Starting High-Availability services: 
Done.2014/11/18_23:36:19 INFO:  Resource is stopped

192.168.1.120 | success | rc=0 >>
Starting High-Availability services: 
Done.2014/11/18_23:36:19 INFO:  Resource is stopped

查看heartbeat运行在哪个节点上

[[email protected] ~]# ansible web -a ‘ifconfig eth0:0‘

192.168.1.130 | success | rc=0 >>

eth0:0    Link encap:Ethernet  HWaddr 00:0C:29:8F:A0:EF

UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

192.168.1.120 | success | rc=0 >>

eth0:0    Link encap:Ethernet  HWaddr 00:0C:29:57:5C:BB

inet addr:192.168.1.250  Bcast:192.168.1.255  Mask:255.255.255.0

UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

[[email protected] ~]# curl 192.168.1.250

heartbeatV2

关闭node2验证是否能够访问验证高可用性

[[email protected] ~]# service heartbeat stop

Stopping High-Availability services:

Done.

时间: 2024-10-10 17:25:20

ansible+heartbeatV2构建高可用群集的相关文章

LVS+Keepalived构建高可用群集

今天以DR模式的LVS群集为基础,增加了一台从负载调度器,使用keepalived来实现主.备调度服务器的热备,从而构架具有负载均衡.高可用两种能力的LVS网站群集平台. 网站拓扑架构图 系统环境 主机 操作系统 IP地址 DR1主调度服务器: CentOS 7.0 x86_64 192.168.100.25 DR2备调度服务器: CentOS 7.0 x86_64 192.168.100.26 web1节点服务器: CentOS 7.0 x86_64 192.168.100.27 web2节点

构建LVS+Keepalived高可用群集

防伪码:不必向我诉说春天,我的心里并没有秋寒 第六章 构建LVS+Keepalived高可用群集 前言:keeplived是专门针对LVS设计的一款辅助工具,主要功能是实现故障切换和健康检查,官方网站:http://www.keepalived.org.类似于我们以前学习过的HSRP热备份路由协议,HSRP是思科的私有协议,而VRRP是通用协议,都是为了实现故障切换,当一台路由器发生故障的时候,另一台马上接替工作,用户感觉不到服务器发生了问题,而且不会中断服务.我们今天学习的双机热备是就是利用了

构建高可用的Hyper-V群集

下面将介绍如何构建高可用的Hyper-v群集系统 安装群集角色 添加故障转移群集 点击安装 创建群集 注意:这里的报警,是因为网卡是但故障节点.因实验环境限制可忽略此报警,但在生产部署中要注意这件事情. 配置群集仲裁 这里需要注意,为了避免存储出现单一故障导致群集仲裁失败,建议将仲裁磁盘分配到不同的存储中或者使用文件共享验证(建议是scal-out-fileserver) 添加群集共享卷

CentOS7.4—构建LVS+Keepalived高可用群集

LVS+Keepalived高可用群集 目录第一部分 环境准备第二部分 使用Keepalived搭建双机热备第三部分 配置Web节点服务器第四部分 测试LVS+Keepalived高可用群集 第一部分 环境准备一:调度器两台(双机热备)系统:Linux-CentOS 7.4IP地址:192.168.80.10(主)IP地址:192.168.80.20(备)二:Web服务器两台系统:Linux-CentOS 7.4IP地址:192.168.80.30(SERVER AA)IP地址:192.168.

CentOS7.4—构建最新版haproxy高可用群集

CentOS7.4-构建haproxy高可用群集 目录第一部分 实验环境第二部分 搭建配置web服务器第三部分 安装配置haproxy服务器第四部分 测试验证第五部分 haproxy配置相关详细解释 第一部分 实验环境 一台harpoxy调度服务器IP地址:192.168.80.10需要软件:haproxy-1.7.10.tar 两台Web服务器(基于nginx)IP地址:192.168.80.20(web01)IP地址:192.168.80.30(web02)需要软件:nginx-1.13.9

构建LVS-DR+keepalived 高可用群集

LVS-DR+keepalived高可用群集 所需环境:     192.168.10.5   主LVS 192.168.10.6   从LVS 192.168.10.7   web 1      虚拟IP:      192.168.10.100 192.168.10.8   web 2      虚拟IP:      192.168.10.100 192.168.10.9   xp客户机 配置要求:断开主LVS,查看客户机是否能ping通10.100 配置原理: 负载均衡的工作模式使用的是直

LINUX 高可用群集之 ~Corosync~

Corosync:它属于OpenAIS(开放式应用接口规范)中的一个项目corosync一版本中本身不具 备投票功能,到了corosync 2.0之后引入了votequorum子系统也具备了投票功能了,如果我们用的是1版本的,又需要用到票数做决策时那该如何是好呢:当然,在红帽上把 cman + corosync结合起来用,但是早期cman跟pacemaker没法结合起来,如果想用pacemaker又想用投票功能的话,那就把cman当成 corosync的插件来用,把cman当成corodync的

使用Microsoft iSCSI Target Server构建高可用SMB3.0

关于Windows Server 2012 R2中故障转移群集功能,可参考前文所述.在Windows Server 2012 R2中故障转移群集中,可用的群集文件服务器主要有: 1. 适用于应用程序数据的横向扩展文件服务器(横向扩展文件服务器):该类群集文件服务器在 Windows Server 2012 中引入,能够让你存储文件共享上的服务器应用程序数据,例如 Hyper-V 虚拟机文件,并获取类似水平的可靠性.可用性.可管理性以及预期从存储区域网络中获得的高性能.所有文件共享均为在线状态,同

高可用群集HA介绍与LVS+keepalived高可用群集

一.Keepalived介绍 通常使用keepalived技术配合LVS对director和存储进行双机热备,防止单点故障,keepalived专为LVS和HA设计的一款健康检查工具,但演变为后来不仅仅为LVS提供方案,Keepaliced支持故障自动切换(Failover),支持节点健康状态检查(Health Checking),官方网站http://www.keepalived.org/ Keepalived采用VRRP的热备份协议实现Linux服务器的多机热备功能,VRRP,虚拟路由冗余协