Recently, the installation of WebSphere MQ on Linux, encountered a lot of small problems, in short, the Linux command is not familiar with, and now the installation steps written down, hope to be used later.
The first step is to download the installation files (websphere_mq6_tar.gz) necessary for the WebSphere MQ installation.
The second step is to extract the file websphere_mq6_tar.gz.
$TAR-ZXVF websphere_mq6_tar.gz
Step three, create the users and user groups that are required for WebSphere MQ installation
$Groupadd MQM
$useradd-d/var/mqm-g mqm-g MQM MQM
#修改用户mqm的登陆密码
$passwd MQM
Step fourth, add the user MQM to the root group
$cd/etc
$VI Group
> Modify mqm:x:1003:mqm into mqm:x:1003:mqm,root
Step Fifth, start installing WebSphere MQ
$sudo apt-get install rpm
The sixth step, accept license,
$./mqlicense.sh-text_only
Step seventh, install the WebSphere MQ client and server side
$sudo rpm--NODEPS-IVH mqseriesruntime-6.0.2-3.i386.rpm
$sudo rpm--NODEPS-IVH mqseriesjava-6.0.2-3.i386.rpm
$sudo rpm--NODEPS-IVH mqseriesclient-6.0.2-3.i386.rpm
$sudo rpm--NODEPS-IVH mqseriessamples-6.0.2-3.i386.rpm
$sudo rpm--NODEPS-IVH mqseriesserver-6.0.2-3.i386.rpm
Step eighth, verify the installation
$Rpm-qa | grep MQSeries
>mqseriesjava-6.0.2-3
>mqseriessamples-6.0.2-3
>mqseriesruntime-6.0.2-3
>mqseriesclient-6.0.2-3
>mqseriesserver-6.0.2-3
OK, the installation is successful.