Reputation: 1066
I am installing rabbit mq server within docker using the steps mentioned @ https://hub.docker.com/r/_/rabbitmq/ .
The installation went through fine, got my rabbitmq working perfectly fine.
I am unable to find the rabbit mq logs.
How to control and turn on the logging?
Upvotes: 6
Views: 12679
Reputation: 11822
Using docker logs rabbitmq_container_id
to show rabbitmq logs.
or
tail -f /var/lib/docker/rabbitmq_container_id/rabbitmq_container_id.logs
Upvotes: 15