Official HiveMQ repository, hosts automatically updated images for the HiveMQ Enterprise MQTT Broker
1M+
Where to get help: Contact
Where to file issues: GitHub issue tracker
Maintained by: HiveMQ
Dockerfiles: GitHub
HiveMQ is an MQTT broker designed for mission-critical enterprise scenarios.
While at its core, HiveMQ is an MQTT 3.1 and MQTT 3.1.1 compatible MQTT broker, HiveMQ excels with its additional features.
Besides the stellar performance, HiveMQ is the leading innovator among MQTT brokers and is improving businesses that rely on MQTT day-to-day.
See Features for more information.
| Tag | Meaning |
|---|---|
| latest | This tag will always point to the latest version of the HiveMQ base image |
| dns-latest | This tag will always point to the latest version of the HiveMQ DNS discovery image |
<version> | Base image providing the given version of the broker (e.g. 3.4.1) |
dns-<version> | DNS discovery image based on the given version base image |
To start a single HiveMQ instance and allow access to the MQTT port as well as the Web UI, get Docker and run the following command:
docker run -p 8080:8080 -p 1883:1883 hivemq/hivemq3
You now have a dockerized local HiveMQ and can connect to the broker (1883) or the WebUI (8080) via the respective ports.
For running HiveMQ in a cluster, we recommend using the DNS-discovery image. This image has the HiveMQ DNS Discovery Plugin built in. It can be used with any container orchestration engine that supports service discovery using a round-robin A record.
The following environment variables can be used to customize the discovery and broker configuration respectively.
| Environment Variable | Default value | Meaning |
|---|---|---|
| HIVEMQ_DNS_DISCOVERY_ADDRESS | - | Address to get the A record that will be used for cluster discovery |
| HIVEMQ_DNS_DISCOVERY_INTERVAL | 31 | Interval in seconds after which to search for new nodes |
| HIVEMQ_DNS_DISCOVERY_TIMEOUT | 30 | How long to wait for DNS resolution to complete |
| HIVEMQ_CLUSTER_PORT | 8000 | Set the port to be used for the cluster transport |
| HIVEMQ_LICENSE | - | base64 encoded license file to use for the broker |
| HIVEMQ_BIND_ADDRESS | - | Set the cluster transport bind address, only necessary if the default policy (resolve hostname) fails |
| HIVEMQ_WEB_UI_USER | admin | Set the username for the Web UI login |
| HIVEMQ_WEB_UI_PASSWORD | SHA256 of adminhivemq (default) | Set the password hash for Web UI authentication |
To start a HiveMQ cluster locally, you can use Docker Swarm.
Please note that using Docker Swarm in production is not recommended.
docker swarm init
docker network create -d overlay --attachable myNetwork
docker service create \
--replicas 3 --network myNetwork \
--env HIVEMQ_DNS_DISCOVERY_ADDRESS=tasks.hivemq \
--publish target=1883,published=1883 \
--publish target=8080,published=8080 \
-p 8000:8000/udp \
--name hivemq \
hivemq/hivemq3:dns-latest
This will provide a 3 node cluster with MQTT port and web UI forwarded to the host network.
For more information, see managing the cluster.
For production we recommend using the DNS discovery image in combination with Kubernetes.
On Kubernetes, an appropriate deployment configuration is necessary to utilize DNS discovery. A headless service will provide a DNS record for the broker that can be used for discovery.
Following is an example configuration for a HiveMQ cluster with 3 nodes using DNS discovery in a replication controller setup.
Please note that you may have to replace HIVEMQ_DNS_DISCOVERY_ADDRESS according to your Kubernetes namespace and configured domain.
apiVersion: v1
kind: ReplicationController
metadata:
name: hivemq-replica
spec:
replicas: 3
selector:
app: hivemq-cluster1
template:
metadata:
name: hivemq-cluster1
labels:
app: hivemq-cluster1
spec:
containers:
- name: hivemq-pods
image: hivemq/hivemq3:dns-latest
ports:
- containerPort: 8080
protocol: TCP
name: web-ui
- containerPort: 1883
protocol: TCP
name: mqtt
env:
- name: HIVEMQ_DNS_DISCOVERY_ADDRESS
value: "hivemq-discovery.default.svc.cluster.local."
- name: HIVEMQ_DNS_DISCOVERY_TIMEOUT
value: "20"
- name: HIVEMQ_DNS_DISCOVERY_INTERVAL
value: "21"
readinessProbe:
tcpSocket:
port: 1883
initialDelaySeconds: 30
periodSeconds: 60
failureThreshold: 60
livenessProbe:
tcpSocket:
port: 1883
initialDelaySeconds: 30
periodSeconds: 60
failureThreshold: 60
---
kind: Service
apiVersion: v1
metadata:
name: hivemq-discovery
annotations:
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
spec:
selector:
app: hivemq-cluster1
ports:
- protocol: TCP
port: 1883
targetPort: 1883
clusterIP: None
To access the HiveMQ Web UI for a cluster running on Kubernetes, create a service exposing the Web UI of the HiveMQ service. Use the following YAML definition (as web.yaml):
kind: Service
apiVersion: v1
metadata:
name: hivemq-web-ui
spec:
selector:
app: hivemq-cluster1
ports:
- protocol: TCP
port: 8080
targetPort: 8080
sessionAffinity: ClientIP
type: LoadBalancer
Create the service using kubectl create -f web.yaml
Note that depending on your provider of Kubernetes environment, load balancers might not be available or additional configuration may be necessary to access the Web UI.
To allow access for the MQTT port of a cluster running on Kubernetes, create a service exposing the MQTT port using a load balancer. You can use the following YAML definition (as mqtt.yaml):
kind: Service
apiVersion: v1
metadata:
name: hivemq-mqtt
annotations:
service.spec.externalTrafficPolicy: Local
spec:
selector:
app: hivemq-cluster1
ports:
- protocol: TCP
port: 1883
targetPort: 1883
type: LoadBalancer
Create the service using kubectl create -f mqtt.yaml
The environment variable HIVEMQ_WEB_UI_PASSWORD allows you to set the password of the Web UI by defining a SHA256 hash for a custom password.
Additionally, you can also configure the username, using the environment variable HIVEMQ_WEB_UI_USER
See Generate a SHA256 Password to read more about how to generate the password hash.
To use a license with this image, you must first encode it as a string.
To do so, run cat license.lic | base64 (replace license.lic with the path to your license file).
Set the resulting string as the value for the HIVEMQ_LICENSE environment variable of the container.
By default this image will attempt to set the bind address using the containers ${HOSTNAME} to ensure that HiveMQ will bind the cluster connection to the correct interface so a cluster can be formed.
This behavior can be overridden by setting any value for the environment variable HIVEMQ_BIND_ADDRESS. The broker will attempt to use the given value as the bind address instead.
Content type
Image
Digest
Size
132.4 MB
Last updated
almost 6 years ago
docker pull hivemq/hivemq3:dns-latest