Reputation: 1552
I have inherited an IMB MQ (V6) system that has multiple brokers. Is there a way to explore everything succinctly ?
i.e. I know what queue managers are running, so without "runmqsc"ing each and every manager, how can i find broker names, listeners, etc ?
There is the Explorer running but again points to knowing the manager and port to have it connect successfully.
Upvotes: 0
Views: 206
Reputation: 7527
To work out which queue managers are running on your machine, use thedspmq
command. Then you'll know each queue manager and can runmqsc
to each one, or point MQ Explorer to each one, or whatever you need to do next.
Upvotes: 0
Reputation: 2626
For MQ, the dmpmqcfg command can be useful to output your configuration info to a file.
For the broker, try the mqsilist command to list installed brokers and their associated resources.
this webpage may be of help to you: Performing health checks for WebSphere Message Broker http://www.ibm.com/developerworks/websphere/library/techarticles/0801_cui/0801_cui.html
Upvotes: 1