iSeries example, server-connection channel" />
Home
Set up the server on i5/OS
These instructions assume that no queue manager or other WebSphere MQ objects have been defined. Follow these steps:
- Create a queue manager by entering the following command:
CRTMQM MQMNAME('queue.manager.1')- Start the queue manager by entering the following command:
STRMQM MQMNAME('queue.manager.1')- Create a local queue by entering the following command:
CRTMQMQ QNAME(QUEUE1) QTYPE(*LCL)- Create a server-connection channel by entering the following command:
CRTMQMCHL CHLNAME(CHANNEL1) CHLTYPE(*SVRCN) TRPTYPE(*TCP) MCAUSRID('QMQM')Note:QMQM is the default user ID.
- Start the listener by entering the following command:
STRMQMLSR MQMNAME('queue.manager.1')
Home