Skip to content
Advertisement

find port number of IBM MQ Queue Manager

I have created a queue manager using these commands in a linux machine

JavaScript

the queue manager is created successfully,

i wanted to know on which port is the queue manager MQ1 running, i tried all possible ways netstat -au and also ps -ef command. It looks like it is running on a different port. I am unable to find the correct port number where it is running, could anyone help?

Advertisement

Answer

Use netstat as root with -p option

JavaScript

The last column gives the PID and ‘Program name’. If you are running the queue manager with your user, you don’t need to sudo.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement