Heartbeat Manual

Heartbeat Manual

一、安装heartbeat

1. linux环境

#cat /etc/issue

Red Hat Enterprise Linux AS release 4 (Nahant Update 4)

2. 管理员登录

以管理员root账号登录

3. 安装libnet

下载libnet-1.1.2.1-1.1.i386.rpm到/root/目录。

#cd /root

#rpm -ivh libnet-1.1.2.1-1.1.i386.rpm

4. 安装heartbeat

下载STABLE-2.1.4.tar.bz2到/root/目录。

#cd /root

#groupadd haclient

#useradd -g haclient -d /var/lib/heartbeat/cores/hacluster -s /sbin/nologin hacluster

# tar jxvf STABLE-2.1.4.tar.bz2

#cd Heartbeat-STABLE-2-1-STABLE-2.1.4

#./ConfigureMe configure

#make

#make install

#cp doc/authkeys /etc/ha.d/

#cp doc/ha.cf /etc/ha.d/

#cp doc/haresources /etc/ha.d/

5. 配置/etc/ha.d/authkeys

#vi /etc/ha.d/authkeys

内容如下

auth 2

2 sha1 HI!

#chmod 600 /etc/ha.d/authkeys

6. 配置/etc/ha.d/ha.cf

#vi /etc/ha.d/ha.cf

内容如下

logfile /var/log/ha-log

logfacility local0

keepalive 2

deadtime 30

warntime 10

initdead 120

udpport 694

ucast eth1 10.1.56.219

auto_failback off

node re1

node re2

7. 配置/etc/ha.d/haresources

#vi /etc/ha.d/haresources

双机互备,内容如下

re1 IPaddr::***.51.173.24 Filesystem:: 192.168.4.5:/vol/yanfa_cvs::/nfs2::nfs http

re1 IPaddr::10.1.56.201 Filesystem:: 192.168.4.5:/vol/yanfa_cvs::/nfs2::nfs http

re2 IPaddr::***.51.173.25 Filesystem:: 192.168.4.5:/vol/yanfa_cvs::/nfs2::nfs http

re2 IPaddr::10.1.56.202 Filesystem:: 192.168.4.5:/vol/yanfa_cvs::/nfs2::nfs http

#mv haresources haresources.bak

#/usr/lib/heartbeat/haresources2cib.py --stout -c /etc/ha.d/ha.cf /etc/ha.d/haresources.bak

由heartbeat管理服务后,需关掉http自启动。

8. 配置/etc/hosts

#vi /etc/hosts

内容如下

10.1.56.218 re1

10.1.56.219 re2

9. 启动

#chkconfig --add heartbeat

#service heartbeat start

你可能感兴趣的:(Heartbeat Manual)