Posted: Thu Sep 20, 2012 10:39 am Post subject: Info: Cannot start broker [8.0.0.1] - Catalog exception
Newbie
Joined: 06 Mar 2012 Posts: 7
** For Reference **
Attempting to start message broker 8.0.0.1 on some environments yields the following exception message:
Code:
BIP2176S: Could not find message 8875 in catalogue En_US/BIPmsgs.cat, inserts are BKR_LOCAL {1} {2} {3} {4} {5} {6}
I have finally tracked this down to a change in the way mqsiprofile repetition is calculated.
Previous Version
Code:
PROSPECTIVE_MQSI_FILEPATH=/opt/ibm/mqsi/8.0.0.0
if test "${MQSI_FILEPATH:-MQSI_FILEPATH_NOT_SET}" = "${PROSPECTIVE_MQSI_FILEPATH}"
then
echo mqsiprofile repetition disallowed - $MQSI_FILEPATH
return 1
fi
Current Version
Code:
if [ -n "${PROSPECTIVE_MQSI_FILEPATH+MQSI_PROFILE_NOT_SET}" ];
then
echo mqsiprofile repetition disallowed
return 1
fi
PROSPECTIVE_MQSI_FILEPATH=/opt/ibm/mqsi/8.0.0.1
However when the runMQService wrapper is invoked it unsets the following
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum