阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

HA高可用方案之Heartbeat v1的安装配置

249次阅读
没有评论

共计 3852 个字符,预计需要花费 10 分钟才能阅读完成。

HA 高可用方案之 Heartbeat v1 的安装配置前提:

1. 时间必须同步,建议使用 ntp 协议

2. 节点之间必须要通过主机名互相通信;通信中使用的名字必须与其节点上 ”uname -n” 命令展示出的名字一致

3. 需要仲裁设备

4. 双方 root 用户能基于 ssh 密钥方式进行通信

5. 本地资源必须能够正常运行,本文将使用 httpd 作为案例

注意:定义为集群服务中的任意资源都不能开机自动启动,因为他们将由 CRM 启动

安装方法

[root@nod1 heartbeat1]# yum -y install net-snmp-libs libnet PyXML libltdl  注意配置 epel 源

[root@nod1 heartbeat1]# rpm -ivh heartbeat-2.1.4-12.el6.i686.rpm heartbeat-stonith-2.1.4-12.el6.i686.rpm heartbeat-pils-2.1.4-12.el6.i686.rpm

Preparing…                ########################################### [100%]

1:heartbeat-pils        ########################################### [33%]

2:heartbeat-stonith      ########################################### [67%]

3:heartbeat              ########################################### [100%]

同步时间:

crontab */3 * * * * /usr/sbin/ntpdate 172.16.0.1 &> /dev/null

节点 1:建立加密关联

 

ssh-keygen -P ''ssh-copey-id -i .ssh/id_rsa.pub root@node2
[root@nod1 ~]# ssh nod2 'date';date   保持两个节点时间同步 Mon Oct  5 17:38:47 HKT 2015Mon Oct  5 17:38:47 HKT 2015
[root@nod1 ~]# scp /etc/hosts nod2:/etc/hosts    两个节点的 hosts 文件保持一致 hosts                                                 100%  228     0.2KB/s   00:00
[root@nod2 ~]# ssh-keygen -t rsa -P ''       确保 nod2 加密连接到 nod1
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:
b0:bc:2e:44:88:6e:7b:a7:d0:63:f6:9f:4f:f8:4d:55 root@nod2.mageedu.com
The key's randomart image is:
+--[RSA 2048]----+
|                 |
|                 |
| . .  .        E |
|. . .. o      .  |
|.  .  o S    .   |
| o. .  ..   .    |
|...*  .. . .     |
| .+.+o  + o      |
|  ..oooo.o .     |
+-----------------+[root@nod2 ~]# ssh-copy-id -i .ssh/id_rsa.pub root@nod1The authenticity of host 'nod1 (192.168.1.10)' can't be established.RSA key fingerprint is 41:26:a8:88:6a:93:f6:56:aa:87:6b:d7:62:46:83:0d.Are you sure you want to continue connecting (yes/no)? yesWarning: Permanently added'nod1,192.168.1.10'(RSA) to the list of known hosts.root@nod1's password: Now try logging into the machine, with "ssh'root@nod1'", and check in:   .ssh/authorized_keys to make sure we haven't added extra keys that you weren't expecting. [root@nod2 ~]# ssh nod1'date';dateMon Oct  5 17:45:26 HKT 2015Mon Oct  5 17:45:26 HKT 2015

配置文件设置;

cd /usr/share/doc/heartbeat-2.1.4cp -p authkeys haresources ha.cf /etc/ha.d   #将备用的配置文件拷贝到配置目录中   ha.cf:heartbeat 的主配置文件,authkeys: 集群信息加密算法及密钥,haresources:heartbeat v1 的 CRM 配置接口 cd /etc/ha.d/chmod 600 authkeys   修改权限 400 或 600

修改 ha.cf 配置:

vim ha.cflogfile /var/log/ha-log#logfacility    local0mcast eth0 228.203.101.1 694 1 0  采用多播地址,本地组播地址:239.0.0.0-239.255.255.255,仅在特定的本地范围内有效 node nod1.mageedu.comnode nod2.mageedu.com   加入高可用集群的计算机 ping  192.168.1.1  仲裁设备,判断计算机是否可用的标准 compression bz2  选择压缩 
  vim authkeys    auth 1   1 sha1  343434349   设置加密,可以使用 openssl rand -hex 6 生成加密密码 

 

  vim haresouces:  nod1.mageedu.com 192.168.1.15/24/eth0/192.168.1.255 httpd    Haresources 文件用于指定双机系统的主节点、集群 IP、子网掩码、广播地址以及启动的服务等集群资源 s 
scp -p authkeys haresouces ha.cf node2:/etc/ha.d/  确保主机 2 配置,文件属性相同-p
service heartbeart start; ssh node2 'service heartbeat start' 启动服务,访问外网地址能正常访问 

HA 高可用方案之 Heartbeat v1 的安装配置

tail /var/log/ha-log 查看日志

cd /usr/lib64/heartbeat/    ./hb_standby 不作为主    ./hb_takeover 作为主 资源转化用

————————————– 分割线 ————————————–

基于 Heartbeat V1 实现 Web 服务双机热备 http://www.linuxidc.com/Linux/2014-04/100635.htm

Heartbeat 实现 Web 服务的高可用群集 http://www.linuxidc.com/Linux/2014-04/99503.htm

Heartbeat+LVS+Ldirectord 高可用负载均衡解决方案 http://www.linuxidc.com/Linux/2014-04/99502.htm

DRBD+Heartbeat+NFS 高可用性配置笔记 http://www.linuxidc.com/Linux/2014-04/99501.htm

Heartbeat 基于 CRM 使用 NFS 对 MySQL 高可用 http://www.linuxidc.com/Linux/2014-03/98674.htm

Heartbeat 高可用 httpd 基于 Resources 简单配置 http://www.linuxidc.com/Linux/2014-03/98672.htm

CentOS 6 高可用服务 Heartbeat v3 安装以及配置  http://www.linuxidc.com/Linux/2015-04/116153.htm

————————————– 分割线 ————————————–

本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-10/123851.htm

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-21发表,共计3852字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中