IBM MQ Setup - Step by step
IBM MQ Setup - Step by step Before starting to install-uninstall, end all WebSphere MQ activity. 1. Log on as a user in group mqm . 2. Use the dspmq command to display the state of all the queue managers on the system. 3. Use the endmqm command to stop all running queue managers. 4. Stop any listeners associated with the queue managers, using the command: endmqlsr -m QMgrName 5. To check that you have stopped all of them, enter the following: ps -ef | grep mq Check that there are no processes listed that are running command lines beginning amq or runmq . Ignore any that start with amqi . List of commands: crtmqm -q MYQM strmqm MYQM runmqsc MYQM define qlocal (MYQUEUE) DEFINE LISTENER('LISTENER.TCP') TRPTYPE(TCP) PORT(1415) CONTROL(QMGR) ALTER LISTENER('LISTENER.TCP') TRPTYPE(TCP) PORT(1415) CONTROL(QMGR) end runmqsc MYQM $ sudo -su root # pwd /usr/mqm/bin # crtmqm -q MYQM WebSphere MQ queue manager created. ...