|
|
|
|
|
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.
- mtxeai02: Run the following script, which will
create and modify the various file systems required for the
implementation of MQSeries in an AIX HACMP environment:
#!/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}
-
mtxeai02: Create the MQSeries HACMP script top level directory:
$ ln -s /mtxeai02/ibm/mqm /MQHA
-
mtxeai01: Create the MQSeries HACMP script top level
directory and the Queue Manager directory for the remote
Queue Manager.
$ ln -s /mtxeai01/ibm/mqm /MQHA
$ ln -s /mtxeai02/ibm/mqm/YYEAIAIX /mtxeai01/ibm/mqm/YYEAIAIX
-
mtxeai02: Copy the HA scripts into the /MQHA/bin directory
$ cp /usr/sys/inst.images/mqseries/* /MQHA/bin
$ chown mqm.mqm /MQHA/bin/ha*
$ chmod 755 /MQHA/bin/ha*
-
mtxeai02: Create the MQSeries queue manager using the HACMP scripts:
$ 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
-
mtxeai01: Create the corresponding links on the failover
side, login as "
mqm ":
$ su - mqm -c halinkmqm YYEAIAIX YYEAIAIX /MQHA/YYEAIAIX/data
-
mtxeai02: Edit the initialization file and remove all
duplicate or inappropriate references to queue managers:
$ me /var/mqm/mqs.ini
-
mtxeai01: Edit the initialization file and remove all
duplicate or inappropriate references to queue managers:
$ me /var/mqm/mqs.ini
-
mtxeai02: login as root and start the Queue manager
using the HACMP scripts:
$ cd /MQHA/bin
$ ./hamqm_start YYEAIAIX
-
mtxeai02: change the file systems and volume group to
NOT automatically startup at system boot time:
$ chfs -An /mtxeai02/ibm/mqm/YYEAIAIX/data
$ chfs -An /mtxeai02/ibm/mqm/YYEAIAIX/log
$ chvg -a'n' -Q'y' -x'n' eai02datavg
-
mtxeai01: HACMP command to start the cluster environment:
$ /usr/sbin/cluster/etc/rc.cluster -boot '-N' '-b' '-i'
-
mtxeai02: HACMP command to start the cluster environment:
$ /usr/sbin/cluster/etc/rc.cluster -boot '-N' '-b' '-i'
|
|
|
|
|
|
|