1

MQ Manager MQ 7.5 on Linux

Are the MQ MFT resource monitor (fteCreateMonitor) definitions contained in the MQ Queue Manager queue definitions (like fte.xxxx) ?

If so, can I simply use the command

dmpmqcfg -m QMA -a > /mq/backups/QMA.mqsc

and restore the configuration on a queue manager with the same name and IP/Hostname (clone) and the resource monitors will be recreated without further effort?

4

1 回答 1

2

我的建议是使用

1) fteListMonitors 命令将任务定义导出到 xml 文件。

2) 使用该 xml 文件和 fteCreateMonitor 命令在另一个队列管理器上重新创建资源监视器。

例如:在机器 1 上导出资源任务定义。

fteListMonitors -ma SRC -mn QMON -ox c:\temp\qmon.xml

qmon.xml文件带到机器 2 并运行以下命令

fteCreateMonitor -ix C:\temp\qmon.xml -ma SRC -mn QMON
于 2017-10-12T14:13:13.653 回答