MQTT Broker
The MQTT integration needs you to run an MQTT broker for Home Assistant to connect to.
Run your own
The most private option is running your own MQTT broker.
The recommended setup method is to use the Mosquitto MQTT broker add-on.
There is an issue with the RabbitMQ MQTT Plugin which break MQTT message retention. Don’t use the RabbitMQ MQTT plugin, instead use another broker like Mosquitto.
Configuration
# Example configuration.yaml entry
mqtt:
broker: 192.168.1.100
Configuration Variables
The client ID that Home Assistant will use. Has to be unique on the server. Default is a randomly generated one.
The time in seconds between sending keep alive messages for this client. Default is 60.
Protocol to use: 3.1 or 3.1.1. By default it connects with 3.1.1 and falls back to 3.1 if server does not support 3.1.1.
If you are running a Mosquitto instance on a different server with proper SSL encryption using a service like Let’s Encrypt you may have to set the certificate to the operating systems own .crt certificates file. In the instance of Ubuntu this would be certificate: /etc/ssl/certs/ca-certificates.crt
Public broker
The Mosquitto project runs a public broker. This is the easiest to set up, but there is no privacy as all messages are public. Use this only for testing purposes and not for real tracking of your devices or controlling your home.
mqtt:
broker: test.mosquitto.org
port: 1883 or 8883
# Optional, replace port 1883 with following if you want encryption
# (doesn't really matter because broker is public)
port: 8883
# Download certificate from http://test.mosquitto.org/ssl/mosquitto.org.crt
certificate: /home/paulus/downloads/mosquitto.org.crt
CloudMQTT
CloudMQTT is a hosted private MQTT instance. Plans start at 5$ per months.
- Create an account
- Create a new CloudMQTT instance
- From the control panel, click on the Details button.
- Create unique users for Home Assistant and each phone to connect
(CloudMQTT does not allow two connections from the same user)- Under manage users, fill in username, password and click add
- Under ACLs, select user, topic
#, check ‘read access’ and ‘write access’
- Copy the instance info to your configuration.yaml:
mqtt:
broker: CLOUDMQTT_SERVER
port: CLOUDMQTT_PORT
username: CLOUDMQTT_USER
password: CLOUDMQTT_PASSWORD
If you experience an error message like Failed to connect due to exception: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed, then add certificate: auto to your broker configuration and restart Home Assistant.