We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable plug-ins at startup through enabled_plugins:
enabled_plugins
[rabbitmq_management].
Start command:
docker run --rm -p 15673:15672 -v D:/RabbitMQ/enabled_plugins:/etc/rabbitmq/enabled_plugins rabbitmq:3.8.8
warning message:
2020-09-16 08:30:59.346 [info] <0.669.0> Running boot step rabbit_mgmt_reset_handler defined by app rabbitmq_management 2020-09-16 08:30:59.346 [info] <0.669.0> Running boot step rabbit_management_load_definitions defined by app rabbitmq_management 2020-09-16 08:30:59.346 [warning] <0.701.0> Metrics collection disabled in management agent, management only interface started 2020-09-16 08:30:59.383 [info] <0.701.0> Management plugin: HTTP (non-TLS) listener started on port 15672 2020-09-16 08:30:59.383 [info] <0.807.0> Statistics database started.
The text was updated successfully, but these errors were encountered:
There's a rabbitmq:management tag with the management plugin installed https://github.com/docker-library/docs/tree/master/rabbitmq#management-plugin
rabbitmq:management
Sorry, something went wrong.
The warning is because the image disables management metrics in the default image because prometheus metrics are enabled (#422):
rabbitmq/Dockerfile-ubuntu.template
Lines 251 to 254 in 66ddebb
But it is re-enabled in the management image:
rabbitmq/Dockerfile-management.template
Lines 5 to 6 in 66ddebb
Thank you!
I haven't noticed the management tag, and now i know.
No branches or pull requests
Enable plug-ins at startup through
enabled_plugins
:Start command:
warning message:
The management interface does not display properly
Direct installation is no problem
The text was updated successfully, but these errors were encountered: