The following document provides step-by-step instructions for reconfiguring an existing installation of MQSeries into an HACMP compatible installation of MQSeries. These instructions assume there is a volume group called "<Machine Identifier>datavg" which exists on a shared external disk array. The "<Machine Identifier>" portion of the volume group name is a string of characters which uniquely identifies the machine with which the volume group is normally associated. As an example, this document describes a two machine, mutual failover cluster using machine names of "mtxeai01" and "mtxeai02".
The volume group, logical volume and file system naming standards used in this document conform to the standardized methodology detailed in the document titled "Filesystem Naming". Two logical volumes are created during this procedure which occupy 2.5 GB of disk space. The amount of disk space used for each logical volume can be changed to suit the implementation requirements.
#!/bin/ksh
################################################################
#
# Customize the following shell variables for each
# machine on which this script is run.
#
################################################################
PPSIZE="16"
DISKNBR="power1"
MACHID="eai02"
QMNAME="YYEAIAIX"
################################################################
umount /mtx${MACHID}/ibm/mqm/${QMNAME}/data
umount /mtx${MACHID}/ibm/mqm/${QMNAME}/log
rmfs /mtx${MACHID}/ibm/mqm/${QMNAME}/data
rmfs /mtx${MACHID}/ibm/mqm/${QMNAME}/log
# Logical Volume: /dev/${MACHID}datalv (edge)
mklv -y${MACHID}datalv -ae ${MACHID}datavg \
$(( 750 / ${PPSIZE} )) hdisk${DISKNBR}
# Logical Volume: /dev/${MACHID}logslv (center)
mklv -y${MACHID}logslv -ac ${MACHID}datavg \
$(( 1750 / ${PPSIZE} )) hdisk${DISKNBR}
# File System: /mtx${MACHID}/ibm/mqm/${QMNAME}/data
crfs -v jfs -a bf=true -d${MACHID}datalv \
-m/mtx${MACHID}/ibm/mqm/${QMNAME}/data -Ayes -prw \
-tno -a nbpi=4096 -a ag=64
mount /mtx${MACHID}/ibm/mqm/${QMNAME}/data
# File System: /mtx${MACHID}/ibm/mqm/${QMNAME}/log
crfs -v jfs -a bf=true -d${MACHID}logslv \
-m/mtx${MACHID}/ibm/mqm/${QMNAME}/log -Ayes -prw \
-tno -a nbpi=4096 -a ag=64
mount /mtx${MACHID}/ibm/mqm/${QMNAME}/log
ln -s /mtx${MACHID}/ibm/mqm /MQHA
chfs -An /mtx${MACHID}/ibm/mqm/${QMNAME}/data
chfs -An /mtx${MACHID}/ibm/mqm/${QMNAME}/log
chvg -a'n' -Q'y' -x'n' ${MACHID}datavg
chown -R mqm.mqm /mtx${MACHID}/ibm/mqm/${QMNAME}
$ ln -s /mtxeai02/ibm/mqm /MQHA
$ ln -s /mtxeai01/ibm/mqm /MQHA
$ ln -s /mtxeai02/ibm/mqm/YYEAIAIX /mtxeai01/ibm/mqm/YYEAIAIX
$ cp /usr/sys/inst.images/mqseries/* /MQHA/bin
$ chown mqm.mqm /MQHA/bin/ha*
$ chmod 755 /MQHA/bin/ha*
$ export MQHAFSDATA=/mtxeai02/ibm/mqm/P1EAIAIX/data
$ export MQHAFSLOG=/mtxeai02/ibm/mqm/P1EAIAIX/log
$ cd /MQHA/bin
$ ./hacrtmqm -ll -lf 16384 -lp 10 -ls 5 -q \
-u SYSTEM.DEAD.LETTER.QUEUE YYEAIAIX
mqm
":
$ su - mqm -c halinkmqm YYEAIAIX YYEAIAIX /MQHA/YYEAIAIX/data
$ me /var/mqm/mqs.ini
$ me /var/mqm/mqs.ini
$ cd /MQHA/bin
$ ./hamqm_start YYEAIAIX
$ chfs -An /mtxeai02/ibm/mqm/YYEAIAIX/data
$ chfs -An /mtxeai02/ibm/mqm/YYEAIAIX/log
$ chvg -a'n' -Q'y' -x'n' eai02datavg
$ /usr/sbin/cluster/etc/rc.cluster -boot '-N' '-b' '-i'
$ /usr/sbin/cluster/etc/rc.cluster -boot '-N' '-b' '-i'