Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How access Druid Console

Tags:

java

druid

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?

like image 943
Isabelle Avatar asked Dec 06 '25 08:12

Isabelle


1 Answers

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 ?

like image 161
Aion Avatar answered Dec 08 '25 22:12

Aion