-
Notifications
You must be signed in to change notification settings - Fork 179
Description
I checked the existing documentation and found that there is an Admin Console to browse the existing database and data execution records, but when I actually use Docker to connect to the database, I don't have access to the corresponding page, and it is always an empty page. I want to ask where I set it wrong?
version: "3.8"
services:
dbhub:
image: bytebase/dbhub:latest
container_name: dbhub-*****
ports:
- "9002:8080"
environment:
DBHUB_LOG_LEVEL: debug
command:
- --transport
- http
- --port
- "8080"
- --dsn
- "mysql://********:********@***-************/*******"
- --readonly
- --log-level
- debug
Use Case: Currently, when debugging the Agent, it's necessary to know which node the data flows to. It is desired to perceive the input and output parameters and status of the nodes.
After the Admin Console became unusable, I tried enabling debug mode, but it didn't seem to take effect either. I hope there can be a way to retain a debugging method. Finally, thank you very much for providing dbhub; it's indeed quite good.
Reactions are currently unavailable