WebSphere MQ 9和安装指南中的新增功能

本文概述

  • 下载用于Linux的IBM MQ 9
  • 在Linux上安装IBM MQ 9
查看IBM MQ 9中正在引入, 删除, 更改的内容以及如何在Linux环境中安装。
IBM今年6月发布了WebSphere MQ 9, 其中包含许多新功能和增强功能。 MQ9中的一些显着变化是:
  • Windows X86-32, Linux X86-32, IBM 4690平台不再支持MQ 9
  • SET POLICY, SETMQMSPL命令获得了新参数KEY REUSE
  • fteCreateWebAgent命令已删除
  • 添加了50多个AMQ消息
  • 引入了称为” 机密性” 的新IBM MQ Advanced Message Security策略。
  • 支持Unicode 8.0标准中定义的所有Unicode字符
  • 支持Windows上的LDAP授权
  • 能够使用向上, 向下和Tab键来控制runmqsc命令
如果你仍在使用MQ 8, 则可以考虑使用MQ 9, 因为已经添加/更改了许多内容。
让我们来看一下Linux环境下MQ 9的安装过程。
下载用于Linux的IBM MQ 9 以下是下载有效期为90天的MQ 9试用版(足以练习)
  • 访问以下URL > > 从列表中选择MQ V9.0, 然后单击Continue。
https://www-01.ibm.com/marketing/iwm/iwm/web/pick.do?source=ESD-WSMQ-EVAL
  • 在评估表上填写个人信息, 然后选择以下内容
WebSphere MQ 9和安装指南中的新增功能

文章图片
  • 接受许可证, 然后单击” 我确认” 。
  • 它超过500 MB, 因此可能需要一些时间, 具体取决于你的上网速度
  • 下载后, 你应该具有以下文件
IBM_MQ_9.0.0.0_LINUX_X86-64_TRIAL.tar.gz

  • 让我们通过gunzip和tar命令提取
gunzip -c IBM_MQ_9.0.0.0_LINUX_X86-64_TRIAL.tar.gz | tar xvf –

在Linux上安装IBM MQ 9 首先, 你需要通过执行mqlicense.sh文件来接受许可协议。
  • 在许可协议窗口中单击” 接受”
[[email  protected] MQServer]# ./mqlicense.shWARNING: Unable to determine distribution and release for this system.Check that it is supported before continuing with installation.Licensed Materials - Property of IBM5724-H72(C) Copyright IBM Corporation 1993, 2016US Government Users Restricted Rights - Use, duplication or disclosurerestricted by GSA ADP Schedule Contract with IBM Corp.Displaying license agreement on :0Agreement accepted:  Proceed with install.[[email  protected] MQServer]#

现在, 你准备安装MQ9。提取下载的文件时, 应该会看到许多RPM文件, 可能不需要全部安装。
但是, 你需要安装的最基本的是:
MQSeriesServer-9.0.0-0.x86_64.rpmMQSeriesRuntime-9.0.0-0.x86_64.rpm

你可以使用rpm命令进行安装。
注意:必须首先安装运行时RPM。
[[email  protected] MQServer]# rpm -ivh MQSeriesRuntime-9.0.0-0.x86_64.rpmPreparing...                                                  ################################# [100%]Creating group mqmCreating user mqmUpdating / installing...1:MQSeriesRuntime-9.0.0-0                  ################################# [100%][[email  protected] MQServer]# rpm -ivh MQSeriesServer-9.0.0-0.x86_64.rpmPreparing...                                                  ################################# [100%]Updating / installing...1:MQSeriesServer-9.0.0-0                    ################################# [100%]Updated PAM configuration in /etc/pam.d/ibmmqWARNING: System settings for this system do not meet recommendations for this productSee the log file at "/tmp/mqconfig.4433.log" for more information[[email  protected] MQServer]#

你可能会注意到一些警告, 因为系统设置不符合建议, 我已经在此处进行了说明。
  • 默认情况下, MQ将安装在/ opt / mqm中, 以便对其进行验证。
  • 转到/ opt / mqm, 你应该看到以下内容。
[[email  protected] mqm]# ls -ltrtotal 44-r--r--r--.  1 mqm mqm        0 May 19  2016 mqpatch.dat-r--r--r--.  1 mqm mqm 14932 May 19  2016 instinfo.tskdr-xr-xr-x.  2 mqm mqm        6 May 19  2016 incdr-xr-xr-x.  2 mqm mqm  4096 Dec 25 08:55 READMESdr-xr-xr-x.  3 mqm mqm      19 Dec 25 08:55 msgdr-xr-xr-x.  3 mqm mqm    132 Dec 25 08:55 sampdr-xr-xr-x.  2 mqm mqm  4096 Dec 25 08:55 licensesdr-xr-xr-x. 16 mqm mqm    188 Dec 25 08:56 docdr-xr-xr-x.  5 mqm mqm      41 Dec 25 08:56 javadr-xr-xr-x.  2 mqm mqm    102 Dec 25 08:56 swidtagdr-xr-xr-x.  3 mqm mqm  4096 Dec 25 08:56 bindr-xr-xr-x.  4 mqm mqm  4096 Dec 25 08:56 libdr-xr-xr-x.  3 mqm mqm  4096 Dec 25 08:56 lib64[[email  protected]alhost mqm]#

  • 转到bin文件夹并执行dspmqver以验证版本
[[email  protected] bin]# ./dspmqverName:              IBM MQVersion:        9.0.0.0Level:            p900-L160518.TRIALBuildType:    IKAP - (Production)Platform:      IBM MQ for Linux (x86-64 platform)Mode:              64-bitO/S:                Linux 3.10.0-514.el7.x86_64InstName:      Installation1InstDesc:Primary:        NoInstPath:      /opt/mqmDataPath:      /var/mqmMaxCmdLevel: 900LicenseType: Trial[[email  protected] bin]#

【WebSphere MQ 9和安装指南中的新增功能】这确认MQ 9已成功安装。继续进行设置队列管理器和环境, 这一切由你完成。

    推荐阅读