Replies: 4 comments 9 replies
-
It is not possible to do it OOTB as it requires enabling and configuring AMQP 1.0 plugin. However, you can configure and run a rabbitmq image locally, exposing a port mapping for the default AMQP 1.0 port with a label version: '3.8'
services:
some-rabbit:
image: rabbitmq:3.12-management-alpine
labels:
- quarkus-dev-service-amqp=amqp
ports:
- '5671'
- '15671'
- '5672'
- '15672'
volumes:
- './enabled_plugins:/etc/rabbitmq/enabled_plugins:ro'
- './custom_rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf' |
Beta Was this translation helpful? Give feedback.
-
You'd still need to start the docker compose manually. Did you do it? |
Beta Was this translation helpful? Give feedback.
-
Also you'd need to mount following files in my example to enable the AMQP 1.0 support correctly :
|
Beta Was this translation helpful? Give feedback.
-
Hi, I am also facing same issue. 2023-08-10 09:41:24,650 INFO [io.sma.rea.mes.amqp] (Quarkus Main Thread) SRMSG16212: Establishing connection with AMQP broker |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to configure RabbitMQ as AMQP broker in the dev resource, but tried the following config, both are not worked as expected,
quarkus.amqp.devservices.image-name=rabbitmq:3-management-alpine
or
Beta Was this translation helpful? Give feedback.
All reactions