Exchanges, Queues are not getting published in RabbitMQ management despite everything showing correct in my springboot application logs #11853
-
I was trying to do some basic RabbitMQ setup and learn few things. I got the RabbitMQ 3.13.6 management docker image. I am running the image with the following command "docker run --rm -it -p 15672:15672 -p 5672:5672 rabbitmq:3.13.6-management".
And because I am running it in DEBUG mode I can see the following DEBUG messages in Springboot application console: Spring Logs
As you can see I am not getting any error but still no exchange or queue is getting created in RabbitMQ management. Neither I can see any error in RabbitMQ server logs in docker. Can you please guide what exactly can I try to get past this? I am literally stuck in this without even any error coming up. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hello, thanks for using RabbitMQ. I started RabbitMQ using the same If you wish to have assistance, the least you can do is share your code so that I can compile and run it. If you do so, I will re-open this discussion. Please refer to Team RabbitMQ's community support policy - https://github.com/rabbitmq/rabbitmq-server/blob/main/COMMUNITY_SUPPORT.md#who-is-eligible-for-community-support |
Beta Was this translation helpful? Give feedback.
-
@shikshartin-coder either share RabbitMQ logs or we won't be able to help you. Most likely your app fails to connect to RabbitMQ. We cannot know why that might be, here are some relevant doc links:
|
Beta Was this translation helpful? Give feedback.
-
My fault. I didn't realized I had installed RabbitMQ on my machine long time back and hence the port 5672 was already occupied by Erleng. Hence despite stopping the rabbitMQ docker container the connection was still happening with Springboot. I had to specifically stop the rabbitMQ server running locally in my machine and then run the Docker RabbitMQ to finally see things working. |
Beta Was this translation helpful? Give feedback.
My fault. I didn't realized I had installed RabbitMQ on my machine long time back and hence the port 5672 was already occupied by Erleng. Hence despite stopping the rabbitMQ docker container the connection was still happening with Springboot. I had to specifically stop the rabbitMQ server running locally in my machine and then run the Docker RabbitMQ to finally see things working.