【RabbitMQ】之解决后台管理页面 Channels 报错提示

问题场景:

我们在 RabbitMQ 后台管理页面上点击 Channels 时如果出现提示:

Stats in management UI are disabled on this node

问题原因:

The reason is that the default image disables metrics collector in the management_agent plugin:

# cat /etc/rabbitmq/conf.d/management_agent.disable_metrics_collector.conf 
management_agent.disable_metrics_collector = true

解决办法:

1、修改配置文件:

cd  /etc/rabbitmq/conf.d/
echo management_agent.disable_metrics_collector = false > management_agent.disable_metrics_collector.conf

2、重启 RabbitMQ

如果是 Docker 容器的话,就重启相应的 RabbitMQ 容器。

你可能感兴趣的:(RabbitMQ,rabbitmq)