mirror of
https://github.com/1technophile/OpenMQTTGateway.git
synced 2026-03-04 22:44:28 +01:00
* [DOCS] Add recommendation for EMQX * [DOCS] Adjust the position and size of the sponsor logo
22 lines
1.3 KiB
Markdown
22 lines
1.3 KiB
Markdown
# Broker
|
|
The broker will act as an intermediary between OpenMQTTGateway and your [controller](/prerequisites/controller), it can be seen as a centralized hub at the heart of your automation system. It carry on messages following a publish / subscribe mechanism.
|
|
|
|
All the events or commands could pass by the broker.
|
|
|
|
There are many choices of brokers, here are some of the most popular:
|
|
* [Mosquitto](https://mosquitto.org/) (Open source)
|
|
* [Moquette](https://moquette-io.github.io/moquette/) (Open source)
|
|
* [EMQX](https://www.emqx.io/) (Open Source)
|
|
* [HiveMQ](https://www.hivemq.com/hivemq/features/)
|
|
* Embedded MQTT brokers (Home Assistant and OpenHAB)
|
|
|
|
This [wikipedia list](https://en.wikipedia.org/wiki/Comparison_of_MQTT_implementations) gives you more details about the different choices you have.
|
|
This [github list](https://github.com/mqtt/mqtt.github.io/wiki/libraries) seems to be the most exhaustive ones.
|
|
Here is also some [ideas of criteria](https://www.hivemq.com/blog/top-10-mqtt-broker-criteria/) from HiveMQ.
|
|
|
|
Once your broker is installed it can be interesting to see the traffic passing to it and to publish data, so as to do that there are several tools available:
|
|
* [MQTT Explorer](http://mqtt-explorer.com/)
|
|
* [HIVE MQ Web client](https://github.com/hivemq/hivemq-mqtt-web-client)
|
|
* [MQTT FX](https://mqttfx.jensd.de/)
|
|
|