MQTT Broker ssl
-
Hi all!
Newbie question
Is there any guide on how to setup an MQTT Broker on Omega2 with SSL?Need help on how the setup the Mosquitto broker, create a topic and how and where puts the SSL certificate.
I want to create my own SSL certificate.Thanks
-
@Die-Go This link was useful to me when I first started with Mosquitto on Omega. Omega runs OpenWrt and Mosquitto is the MQTT implementation on OpenWrt
https://www.onetransistor.eu/2019/05/mosquitto-mqtt-on-openwrt-router.html
-
Thanks! very useful!
-
I'm using golang, for MQTT over ssl. The solution in our code was to use
tcps
for the connector and port 8333.Granted, we're using certificates already in the ca-bundle (Amazon) for the upstream message broker, so we don't need to finagle self-signed certs.
What language are you using?