本文概述
查看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
- 在评估表上填写个人信息, 然后选择以下内容
- 接受许可证, 然后单击”我确认”。
- 它超过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.sh
WARNING: Unable to determine distribution and release for this system.
Check that it is supported before continuing with installation.
Licensed Materials - Property of IBM
5724-H72
(C) Copyright IBM Corporation 1993, 2016
US Government Users Restricted Rights - Use, duplication or disclosure
restricted by GSA ADP Schedule Contract with IBM Corp.
Displaying license agreement on :0
Agreement accepted: Proceed with install.
[[email protected] MQServer]#
现在, 你准备安装MQ9。提取下载的文件时, 应该会看到许多RPM文件, 可能不需要全部安装。
但是, 你需要安装的最基本的是:
MQSeriesServer-9.0.0-0.x86_64.rpm
MQSeriesRuntime-9.0.0-0.x86_64.rpm
你可以使用rpm命令进行安装。
注意:必须首先安装运行时RPM。
[[email protected] MQServer]# rpm -ivh MQSeriesRuntime-9.0.0-0.x86_64.rpm
Preparing... ################################# [100%]
Creating group mqm
Creating user mqm
Updating / installing...
1:MQSeriesRuntime-9.0.0-0 ################################# [100%]
[[email protected] MQServer]# rpm -ivh MQSeriesServer-9.0.0-0.x86_64.rpm
Preparing... ################################# [100%]
Updating / installing...
1:MQSeriesServer-9.0.0-0 ################################# [100%]
Updated PAM configuration in /etc/pam.d/ibmmq
WARNING: System settings for this system do not meet recommendations for this product
See the log file at "/tmp/mqconfig.4433.log" for more information
[[email protected] MQServer]#
你可能会注意到一些警告, 因为系统设置不符合建议, 我已经在此处进行了说明。
- 默认情况下, MQ将安装在/ opt / mqm中, 以便对其进行验证。
- 转到/ opt / mqm, 你应该看到以下内容。
[[email protected] mqm]# ls -ltr
total 44
-r--r--r--. 1 mqm mqm 0 May 19 2016 mqpatch.dat
-r--r--r--. 1 mqm mqm 14932 May 19 2016 instinfo.tsk
dr-xr-xr-x. 2 mqm mqm 6 May 19 2016 inc
dr-xr-xr-x. 2 mqm mqm 4096 Dec 25 08:55 READMES
dr-xr-xr-x. 3 mqm mqm 19 Dec 25 08:55 msg
dr-xr-xr-x. 3 mqm mqm 132 Dec 25 08:55 samp
dr-xr-xr-x. 2 mqm mqm 4096 Dec 25 08:55 licenses
dr-xr-xr-x. 16 mqm mqm 188 Dec 25 08:56 doc
dr-xr-xr-x. 5 mqm mqm 41 Dec 25 08:56 java
dr-xr-xr-x. 2 mqm mqm 102 Dec 25 08:56 swidtag
dr-xr-xr-x. 3 mqm mqm 4096 Dec 25 08:56 bin
dr-xr-xr-x. 4 mqm mqm 4096 Dec 25 08:56 lib
dr-xr-xr-x. 3 mqm mqm 4096 Dec 25 08:56 lib64
[[email protected]alhost mqm]#
- 转到bin文件夹并执行dspmqver以验证版本
[[email protected] bin]# ./dspmqver
Name: IBM MQ
Version: 9.0.0.0
Level: p900-L160518.TRIAL
BuildType: IKAP - (Production)
Platform: IBM MQ for Linux (x86-64 platform)
Mode: 64-bit
O/S: Linux 3.10.0-514.el7.x86_64
InstName: Installation1
InstDesc:
Primary: No
InstPath: /opt/mqm
DataPath: /var/mqm
MaxCmdLevel: 900
LicenseType: Trial
[[email protected] bin]#
这确认MQ 9已成功安装。继续进行设置队列管理器和环境, 这一切由你完成。
评论前必须登录!
注册