Author |
Message
|
wbiman |
Posted: Mon Oct 18, 2004 7:58 am Post subject: MQSeries Listening port? |
|
|
Voyager
Joined: 13 Jul 2004 Posts: 84
|
hi Friends,
I know its simple, its not working for me...
Can please post the command to know on which TCP port the MQ Manager is running/listening ? I have created an Queue manager on unix machine.
Thanks |
|
Back to top |
|
 |
jefflowrey |
Posted: Mon Oct 18, 2004 8:02 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
This is likely not the place for this question.
But the answer is, MQSeries is listening on the port that the listener uses. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
wbiman |
Posted: Mon Oct 18, 2004 8:03 am Post subject: port |
|
|
Voyager
Joined: 13 Jul 2004 Posts: 84
|
How to find port which listner is listening?
Thanks |
|
Back to top |
|
 |
mqsha |
Posted: Mon Oct 18, 2004 8:28 am Post subject: |
|
|
Novice
Joined: 10 Jun 2004 Posts: 17
|
Hi
you can check the listner port using grep command if its already running.
or
use this command to start on different port
runmqlsr -t TCP(port no#) -m source.queue.manager.
or
if you want to run the listner as demon you can set it up in /etc/system. |
|
Back to top |
|
 |
muthum_2000 |
Posted: Wed Mar 14, 2007 2:04 am Post subject: |
|
|
 Voyager
Joined: 10 Jul 2006 Posts: 85
|
Please copy,paste the following command
ps -ef | grep runmqlsr
This will fecth you the listener ports along with the queuemanager name. |
|
Back to top |
|
 |
swsbhelp |
Posted: Wed Mar 26, 2008 12:47 am Post subject: |
|
|
Newbie
Joined: 10 Mar 2008 Posts: 3
|
On WIndows 2003 and above, run the following on command line :
wmic process where NAME="runmqlsr.exe" get CommandLine
For explicit information, use
wmic process where NAME="runmqlsr.exe" get /VALUE |
|
Back to top |
|
 |
|