You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I create a new Broker in HiveMQ and i want change the broker for sending and receiving a data (position x y z, emergency lock ....) between Raspberry and HiveMQ.
I installed paho-MQTT
I created an account in HiveMQ
how i can do it ?
The text was updated successfully, but these errors were encountered:
To add some details to what @jsimmonds2 said, the MQTT broker was not intended to be a replaceable component. RabbitMQ is the only supported broker. The software stack's MQTT usage was intentionally built with tight coupling to the API server for security reasons. To use a non-FarmBot MQTT server you would need to self-host your FarmBot and set a custom MQTT_HOST ENV var on the server-side. You would then need to double-check that the server still operates correctly with your vendor's specific MQTT broker (no guarantee that it will work). After that, you will need to ensure that the MQTT broker is secure since the Web App will not be able to control access to the MQTT server. The Web App's default MQTT server has security mechanisms, but they are specific to RabbitMQ, it will not be able to control access if you do not use RabbitMQ.
I would not recommend changing the default MQTT server since it will require you to make modifications to the software source code in multiple places. It will also require you to understand the security risks involved.
I create a new Broker in HiveMQ and i want change the broker for sending and receiving a data (position x y z, emergency lock ....) between Raspberry and HiveMQ.
I installed paho-MQTT
I created an account in HiveMQ
how i can do it ?
The text was updated successfully, but these errors were encountered: