ibm-messaging / mq-container

Container images for IBM® MQ
Apache License 2.0
255 stars 189 forks source link

After stop container and restart mqweb component does not work #467

Closed lucasmori closed 2 years ago

lucasmori commented 3 years ago

I'm just running the latest container from dockerhub. It starts fine but if I stop and restart the mqweb component does not work any longer.

2021-08-23T16:02:45.743Z Error 1 starting web server: 
Server mqweb is already running.
2021-08-23T16:02:45.743Z Error starting web server: exit status 1

I need to kill my volume and start from zero again, and if I stop or restart the container the same error occurs.

lucasmori commented 3 years ago

My docker-compose.yaml


version: "3.9"

services:
  ibmmq:
    container_name: ibmmq
    image: ibmcom/mq:latest
    ports:
      - "1414:1414"
      - "9443:9443"
    environment:
      - LICENSE=accept
      - MQ_QMGR_NAME=MQ1
      - MQ_APP_PASSWORD=somepasswordhere
    volumes:
      - qm1data:/mnt/mqm
volumes:
  qm1data: {}
arthurbarr commented 2 years ago

Duplicate of #448