user170008
user170008

Reputation: 1066

Enabling logging for rabbit mq server within a docker image

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

Answers (1)

Thanh Nguyen Van
Thanh Nguyen Van

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

Related Questions