Author |
Message
|
mq_crazy |
Posted: Tue Aug 24, 2004 10:38 am Post subject: MQ Documentation |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
Guys help me. I have an environment of 4 queue managers, 3 on win2k and one on HP-UX, I need to document all the properties of all queue managers like names of queues, depth etc.... is there any command that gives me all the properties for documentation?????? I know there is export list in windows that gives me, but is there anything from command prompt that does it and what for HP-UX??? Thanks |
|
Back to top |
|
 |
PGoodhart |
Posted: Tue Aug 24, 2004 10:46 am Post subject: |
|
|
Master
Joined: 17 Jun 2004 Posts: 278 Location: Harrisburg PA
|
On all flavors of Unix it is easy to use runmqsc and redirect the output to a file. Why don't you try that? _________________ Patrick Goodhart
MQ Admin/Web Developer/Consultant
WebSphere Application Server Admin |
|
Back to top |
|
 |
bbburson |
Posted: Tue Aug 24, 2004 10:47 am Post subject: |
|
|
Partisan
Joined: 06 Jan 2004 Posts: 378 Location: Nowhere near a queue manager
|
Use MS03 support pac to save queue manager configuration. There's another one (I don't remember the support pac number) to save authorization information. |
|
Back to top |
|
 |
mq_crazy |
Posted: Tue Aug 24, 2004 10:59 am Post subject: |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
Thanks guys for all your replies. My question is even in the windows instead of doing export list is there any command that gives all the configuration properties? |
|
Back to top |
|
 |
PGoodhart |
Posted: Tue Aug 24, 2004 11:24 am Post subject: |
|
|
Master
Joined: 17 Jun 2004 Posts: 278 Location: Harrisburg PA
|
Runmqsc can be used from the windows command line too. The support pack also works as well. The major difference is that the support pack gives you output in define statements and the runmqsc just gives you what you normally see in a display statement. The service pack doesn't give you all of the information (queue depth) you asked for.
Basically on either system (windows/unix), you build an input file like this:
display queue(*) all
display channel(*) all
display chstatus(*) all
Direct it into runmqsc like this
runmqsc QueueMgr < input.file > output.file
and your documentation output will be in output.file _________________ Patrick Goodhart
MQ Admin/Web Developer/Consultant
WebSphere Application Server Admin |
|
Back to top |
|
 |
mq_crazy |
Posted: Tue Aug 24, 2004 11:29 am Post subject: |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
Thanks dude that helps a lot. I really appreciate once again!!!!!!! |
|
Back to top |
|
 |
Shalini |
Posted: Thu Sep 23, 2004 11:28 pm Post subject: |
|
|
Master
Joined: 30 Apr 2002 Posts: 224 Location: India
|
Hi All,
Is there any support pack which gives me a file contaning the defination of MQ Objects using "runmqsc script".
ie if I execute the support pack it should dump the Queue,Channel,Namelist and process et defination (runmqsc defination script) into a file ????
Looking for your reply.
 |
|
Back to top |
|
 |
siliconfish |
Posted: Thu Sep 23, 2004 11:50 pm Post subject: |
|
|
 Master
Joined: 12 Aug 2002 Posts: 203 Location: USA
|
MS03 WebSphere MQ save Queue Manager object definitions using PCFs |
|
Back to top |
|
 |
Shalini |
Posted: Fri Sep 24, 2004 12:32 am Post subject: |
|
|
Master
Joined: 30 Apr 2002 Posts: 224 Location: India
|
Hi,
But it does not give me the back up for "Namelist and process defination"
 |
|
Back to top |
|
 |
kevinf2349 |
Posted: Fri Sep 24, 2004 5:00 am Post subject: |
|
|
 Grand Master
Joined: 28 Feb 2003 Posts: 1311 Location: USA
|
As previously stated you could use runmqsc with the following DISPLAY commands piped in.
DISPLAY STGCLASS(*)
DISPLAY QUEUE(*) ALL
DISPLAY NAMELIST(*) ALL
DISPLAY PROCESS(*) ALL
DISPLAY CHANNEL(*) ALL
That shoudl give you all of the objects defined to the queue manager. |
|
Back to top |
|
 |
|