Tools / Apache HertzBeat Interview Questions
How do you install HertzBeat using Docker?
The fastest path is a single Docker command that starts the all-in-one server image:
docker run -d -p 1157:1157 -p 1158:1158 \ --name hertzbeat apache/hertzbeat
Port 1157 serves the web UI and API, while 1158 is used for collector communication. Once the container is running, browse to http://localhost:1157 and log in with the default admin/hertzbeat account.
This single-container mode is meant for evaluation and small deployments; production setups typically mount a persistent volume, attach a proper time-series database, and separate out collector containers for scale.
More Related questions...