skip to Main Content

how to increase Delivery acknowledgment timeouts rabbitMQ version is 3.10.1 – Docker

how to increase Delivery acknowledgment timeouts rabbitMQ version is 3.10.1 rabbitMQ configuration rabbitmq: hostname: 'prod-rabbitmq' image: "rabbitmq:3.10.1-management-alpine" container_name: puppeteer-script-rabbitmq restart: always volumes: - ./data/rabbitmq:/var/lib/rabbitmq - ./data/rabbitmq:/var/log/rabbitmq - ./data/rabbitmq:/var/lib/rabbitmq/mnesia ports: - "5672:5672" - "15672:15672" operation none caused a channel exception precondition_failed:…

VIEW QUESTION

Docker rabbitmq doesn't work with RABBITMQ_DEFAULT_USER and RABBITMQ_DEFAULT_PASS

I'm trying to run rabbitmq service with following configuration: version: '3.9' services: rabbit-mq: container_name: rabbitmq image: rabbitmq:3-management environment: RABBITMQ_DEFAULT_USER: ${RABBITMQ_DEFAULT_USER} RABBITMQ_DEFAULT_PASS: ${RABBITMQ_DEFAULT_PASS} RABBITMQ_DEFAULT_VHOST: 'test' ports: - '5672:5672' - '15672:15672' networks: monorepo: gateway: container_name: gateway environment: - APP_PORT=${GATEWAY_MS_PORT} build: context: .…

VIEW QUESTION

Docker RabbitMQ runs then stops

I am trying to follow this tutorial on setting up docker clusters https://levelup.gitconnected.com/setting-up-rabbitmq-cluster-c247d61385ed I get to running the following command that I will need to run for the other two nodes docker run -d --rm --net rabbit -v C:RabbitPrototypeconfigrabbit-1/:/config/ -e…

VIEW QUESTION
Back To Top
Search