Search code examples
javadruid

How access Druid Console


I'm testing Apache Druid. I installed it in a single machine. I followed Druid tutorial: https://druid.apache.org/docs/latest/tutorials/index.html

The machine that I'm using is a virtual machine in an internal cloud access of the company.

When I start Druid ./start-micro-quickstart it looks like every thing is running well, but when I open Druid console on localhost:8888 I got the following message:

site can't reached

I changed the address to 127.0.0.1:8888 ==> same error.

Can someone please help?


Solution

  • According to the documentation :

    the Router's management proxy must be enabled.

    the Broker processes in the cluster must have Druid SQL enabled.

    Then the console should be accessed here : http://<ROUTER_IP>:<ROUTER_PORT>

    Can you confirm that those points are valid on your case ?