Posts

Showing posts with the label IBM MQ

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. ...

IBM MQ Errors - Solutions

FAQ's Error: 0000008a SystemErr     R com.ibm.msg.client.jms.DetailedJMSSecurityException: JMSWMQ2013: The security authentication was not valid that was supplied for  QueueManager 'MYQM' with connection mode 'Client' and host name 'MYLAPTOP(1414)'. Please check if the supplied username and password are correct on the QueueManager to which you are connecting. 00000080 SystemErr     R Caused by: com.ibm.mq.MQException: JMSCMQ0001: WebSphere MQ call failed with compcode '2' ('MQCC_FAILED') reason '2035'  ('MQRC_NOT_AUTHORIZED'). 00000080 MDBListenerIm W   WMSG0019E: Unable to start MDB Listener MDB, JMSDestination MYQUEUE : com.ibm.msg.client.jms.DetailedJMSSecurityException: JMSWMQ2013: The security authentication was not valid that was supplied for QueueManager 'MYQM' with connection mode 'Client' and host name 'MYLAPTOP(1414)'. Please check if the supplied username and password are correct on the Queue...