Install Mq Explorer On Ubuntu

2020. 2. 15. 08:00카테고리 없음

Explorer
  1. Ibm Mq Install
  2. Install Mq On Linux

MQ Installation on Ubuntu using debian packagesThere are two ways to install MQ debian packages on Ubuntu system, one is using dpkg command and another way is to use apt installer. Ubuntu debian packages are supported from MQ 9.0.2 CD release and MQ 9.1 and above. We will learn how to install MQ 9.1 debian packages on Ubuntu system using dpkg command in this blog, same steps you can follow for any other MQ release and for applying fixpack too.dpkg command installation for each component consists of following steps in backgroundPreparing to unpackEntering preinstUnpackingSetting upEntering postinst for package configureWhen we try to install multiple packages together using dpkg command for example jre and java. First three steps that is “preparing to unpack”, “entering preinst” and “unpacking” will happen for jre package and then for java package in sequence and then remaining two steps that is “setting up” and “entering postinst for package configure” will happen for jre package and later for java package. When we try to install multiple packages with dependency together in proper sequence, the packages which have dependency on previously mentioned packages does not get install because the later two steps for previous dependent package are yet to happen.

This is the reason we have to install few packages separately and in proper sequence.dpkg does not sort the packages mentioned in dpkg command, we must place the MQ package file names in the following order when we issue command:ibmmq-runtimeibmmq-jreibmmq-javaibmmq-serveribmmq-webibmmq-ftbaseibmmq-ftagentibmmq-ftserviceibmmq-ftloggeribmmq-fttoolsibmmq-amqpibmmq-amsibmmq-xrserviceibmmq-exploreribmmq-gskitibmmq-clientibmmq-manibmmq-msglanguageibmmq-samplesibmmq-sdkibmmq-sfbridgeibmmq-bcbridgeBefore starting installation1. Check the and pick proper MQ drivers2. Check if MQ components in the drivers we downloaded have extension as.deb3. We must uninstall all rpm versions of the product before installing the Debian version of the product.4. On Ubuntu MQ can be installed only on default location “/opt/mqm”5.

Ibm Mq Install

Ubuntu doesnot support multiple MQ installations, only one instance of MQ can be installed on Ubuntu.6. We can install multiple packages with the same dpkg command but place the packages in the correct order as dpkg does not sort them according to dependency.Lets start MQ 9.1.0.0 installation1. Open a shell terminal as a root user and set current directory to the location of the installation packages.2. Before MQ installation we need to accept MQ license using below stepsRun./mqlicense.shThe license is displayedEnter 1 to accept the license agreement3.

First component in the sequence above is runtime, install runtime component using below command. All other components are dependent on runtime component thats why we need to install this separately.dpkg -i ibmmq-runtime9.1.0.0amd64.deb4. Next step is to install jre, java and server component, as web component is dependent on java. If we try to install web in this step we will encounter following error:dpkg: regarding ibmmq-web9.1.0.0amd64.deb containing ibmmq-web, pre-dependency problem:ibmmq-web pre-depends on ibmmq-java (= 9.1.0.0)ibmmq-java is unpacked, but has never been configured.dpkg: error processing archive ibmmq-web9.1.0.0amd64.deb (–install):pre-dependency problem – not installing ibmmq-webInstall jre, java and server packages using below commanddpkg -i ibmmq-jre9.1.0.0amd64.deb ibmmq-java9.1.0.0amd64.deb ibmmq-server9.1.0.0amd64.deb5. Now install web and ftabase component as next component in the sequence ftagent is dependent on ftabase installationdpkg -i ibmmq-web9.1.0.0amd64.deb ibmmq-ftbase9.1.0.0amd64.deb6.

Install Mq On Linux

Ftaservice is dependent on ftagent installation, so we need to install ftagent component separatelydpkg -i ibmmq-ftagent9.1.0.0amd64.deb7.