Is there a way to decouple the UI from the broker? #703
-
| # compose.yaml
services:
  ...
  
  broker:
    hostname: broker
    image: rabbitmq:3.13.3-alpine
    ports:
      - 5672:5672
    volumes:
      - broker-data:/var/lib/rabbitmq
  broker-gui:
    image: rabbitmq:3.13.3-management-alpine
    profiles:
      - gui
    ports:
      - 15672:15672
  ...
volumes:
  ...
  broker-data:
  ...
I would like have a setup like this working, so I don't have the UI running always, but if I need to check something I can do  | 
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
| No, RabbitMQ does not support this behavior at this time. | 
Beta Was this translation helpful? Give feedback.
-
| @samuel-andres you can use CLI tools or Prometheus and Grafana instead, and disable the management plugin entirely. You can also build your own UI, there existing one uses the same public HTTP API that's available to you. | 
Beta Was this translation helpful? Give feedback.
No, RabbitMQ does not support this behavior at this time.