iSeries example, server-connection channel" /> Set up the server on i5/OS
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:

  1. Create a queue manager by entering the following command:

    CRTMQM MQMNAME('queue.manager.1')

  2. Start the queue manager by entering the following command:

    STRMQM MQMNAME('queue.manager.1')

  3. Create a local queue by entering the following command:

    CRTMQMQ QNAME(QUEUE1)  QTYPE(*LCL)

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

  5. Start the listener by entering the following command:

    STRMQMLSR MQMNAME('queue.manager.1')



 

Home