I'm using Rabbitmq docker images with version: rabbitmq:3-management
.
docker run -d --hostname my-rabbit --name ecomm-rabbit -p 15672:15672 -p 5672:5672 rabbitmq:3-management
And I'm curious about the way it stores msg in the queue (in case of persistent data in disk instead of RAM).
I've read this post and the accepted answer said that:
RabbitMQ uses a custom DB to store the messages, the DB is usually located here:
/var/lib/rabbitmq/mnesia/rabbit@hostname/queues
However, when I navigate to this folder, I didn't see that.
My question is: What is the folder/file it storing the DB file? And what does kind of or structure look like?