Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

IBM MQ

Instalação

Docker

Imagem: ibm-messaging, ibm-messaging (versões antigas)

Config

Acessar interface de MQSC:

runmqsc

Gerenciador de Filas

Mostrar informações:

DISPLAY QMGR

Alterar atributos:

ALTER QMGR DESCR('Meu servidor de teste')

Fila

Criar fila local:

DEFINE QLOCAL(QUEUE.LOCAL) +
    DESCR('Minha fila local') +
    REPLACE

Exemplos

  • Acesso Interface web: https://localhost:9443/

docker-compose

services:
  mq:
    image: icr.io/ibm-messaging/mq:9.4.4.0-r2
    environment:
      LICENSE: "accept"
      MQ_QMGR_NAME: "QMBCB"
      MQ_ADMIN_USER: "admin"
      MQ_ADMIN_PASSWORD: "passw0rd"
      MQ_APP_USER: "app"
      MQ_APP_PASSWORD: "passw0rd"
    volumes:
      - mq-data:/mnt/mqm
    ports:
      - "1414:1414"
      - "9443:9443"
volumes:
  mq-data: