MQSeries for Compaq Tru64 UNIX configuration

Before beginning the installation process ensure that you have first created the mqm user and group, and set the password.

Start any channel using the command:

runmqchl -c channel.name -m qmname

Notes:

  1. Sample programs are installed in /opt/mqm/samp.

  2. Error logs are stored in /var/mqm/qmgrs/qmname/errors.

  3. When you are using the command interpreter runmqsc to enter administration commands, a + at the end of a line indicates that the next line is a continuation. Ensure that there is a space between the last parameter and the continuation character.

Basic configuration

  1. Create the queue manager from the UNIX prompt using the command:
    crtmqm -u dlqname -q qmname
    
    where:

    qmname
    Is the name of the queue manager

    -q
    Indicates that this is to become the default queue manager

    -u dlqname
    Specifies the name of the undeliverable message queue

    This command creates a queue manager and sets the DEADQ attribute of the queue manager, but does not create the undeliverable message queue.

  2. Start the queue manager from the UNIX prompt using the command:
    strmqm qmname
    
    where qmname is the name given to the queue manager when it was created.

Channel configuration

This section describes the configuration to be performed on the Compaq Tru64 UNIX queue manager to implement the single channel, and the WebSphere MQ objects associated with it.

Examples are given at the end of this chapter for connecting MQSeries for Compaq Tru64 UNIX and MQSeries for OS/2 Warp. If you wish to connect to another WebSphere MQ product use the appropriate set of values from the table in place of those for OS/2.

In each example, the MQSC command is shown. Either start runmqsc from a UNIX prompt and enter each command in turn, or build the commands into a command file.

Note:
The words in bold are user-specified and reflect the names of WebSphere MQ objects used throughout these examples. All others are keywords and should be entered as shown.


Table 23. Configuration worksheet for MQSeries for Compaq Tru64 UNIX

ID Parameter Name Reference Example Used User Value
Definition for local node
(A) Queue Manager Name
DECUX
(B) Local queue name
DECUX.LOCALQ
Connection to MQSeries for OS/2 Warp

The values in this section of the table must match those used in Table 16.

(C) Remote queue manager name (A) OS2
(D) Remote queue name
OS2.REMOTEQ
(E) Queue name at remote system (B) OS2.LOCALQ
(F) Transmission queue name
OS2
(H) Sender (TCP) channel name
DECUX.OS2.TCP
(J) Receiver (TCP) channel name (H) OS2.DECUX.TCP
Connection to WebSphere MQ for Windows

The values in this section of the table must match those used in Table 18.

(C) Remote queue manager name (A) WINNT
(D) Remote queue name
WINNT.REMOTEQ
(E) Queue name at remote system (B) WINNT.LOCALQ
(F) Transmission queue name
WINNT
(H) Sender (TCP) channel name
DECUX.WINNT.TCP
(J) Receiver (TCP) channel name (H) WINNT.DECUX.TCP
Connection to WebSphere MQ for AIX

The values in this section of the table must match those used in Table 22.

(C) Remote queue manager name (A) AIX
(D) Remote queue name
AIX.REMOTEQ
(E) Queue name at remote system (B) AIX.LOCALQ
(F) Transmission queue name
AIX
(H) Sender (TCP) channel name
DECUX.AIX.TCP
(J) Receiver (TCP) channel name (H) AIX.DECUX.TCP
Connection to MQSeries for AT&T GIS UNIX

The values in this section of the table must match those used in Table 27.

(C) Remote queue manager name (A) GIS
(D) Remote queue name
GIS.REMOTEQ
(E) Queue name at remote system (B) GIS.LOCALQ
(F) Transmission queue name
GIS
(H) Sender (TCP) channel name
DECUX.GIS.TCP
(J) Receiver (TCP) channel name (H) GIS.DECUX.TCP
Connection to WebSphere MQ for Solaris

The values in this section of the table must match those used in Table 30.

(C) Remote queue manager name (A) SOLARIS
(D) Remote queue name
SOLARIS.REMOTEQ
(E) Queue name at remote system (B) SOLARIS.LOCALQ
(F) Transmission queue name
SOLARIS
(H) Sender (TCP) channel name
DECUX.SOLARIS.TCP
(J) Receiver (TCP) channel name (H) SOLARIS.DECUX.TCP
Connection to WebSphere MQ for iSeries.

The values in this section of the table must match those used in Table 49.

(C) Remote queue manager name (A) AS400
(D) Remote queue name
AS400.REMOTEQ
(E) Queue name at remote system (B) AS400.LOCALQ
(F) Transmission queue name
AS400
(H) Sender (TCP) channel name
DECUX.AS400.TCP
(J) Receiver (TCP) channel name (H) AS400.DECUX.TCP
Connection to WebSphere MQ for z/OS without CICS

The values in this section of the table must match those used in Table 34.

(C) Remote queue manager name (A) MVS
(D) Remote queue name
MVS.REMOTEQ
(E) Queue name at remote system (B) MVS.LOCALQ
(F) Transmission queue name
MVS
(H) Sender (TCP) channel name
DECUX.MVS.TCP
(J) Receiver (TCP) channel name (H) MVS.DECUX.TCP
Connection to MQSeries for VSE/ESA

The values in this section of the table must match those used in Table 51.

(C) Remote queue manager name (A) VSE
(D) Remote queue name
VSE.REMOTEQ
(E) Queue name at remote system (B) VSE.LOCALQ
(F) Transmission queue name
VSE
(G) Sender (SNA) channel name
DECUX.VSE.SNA
(I) Receiver (SNA) channel name (G) VSE.DECUX.SNA

MQSeries for Compaq Tru64 UNIX sender-channel definitions using TCP/IP

def ql (OS2) +                                 (F)
    usage(xmitq) +
    replace
 
def qr (OS2.REMOTEQ) +                         (D)
    rname(OS2.LOCALQ) +                        (E)
    rqmname(OS2) +                             (C)
    xmitq(OS2) +                               (F)
    replace
 
def chl (DECUX.OS2.TCP) chltype(sdr) +          (H)
    trptype(tcp) +
    conname(remote_tcpip_hostname) +
    xmitq(OS2) +                               (F)
    replace

MQSeries for Compaq Tru64 UNIX receiver-channel definitions using TCP/IP

def ql (DECUX.LOCALQ) replace                   (B)
 
def chl (OS2.DECUX.TCP) chltype(rcvr) +         (J)
    trptype(tcp) +
    replace



© IBM Corporation 2002. All Rights Reserved