Difference between revisions of "MQTT"
From Teknologisk videncenter
m (→Links) |
m |
||
Line 1: | Line 1: | ||
+ | =Mosquitto on Ubuntu= | ||
+ | To use mosquitto on all interfaces and anonymous. Add these lines to ''/etc/mosqquitto/mosquitto.cond'' | ||
+ | <source lang=bash> | ||
+ | allow_anonymous true | ||
+ | listener 1883 0.0.0.0 | ||
+ | </source> | ||
+ | |||
=Links= | =Links= | ||
* [https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-the-mosquitto-mqtt-messaging-broker-on-centos-7 how-to-install-and-secure-the-mosquitto-mqtt-messaging-broker-on-centos-7] | * [https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-the-mosquitto-mqtt-messaging-broker-on-centos-7 how-to-install-and-secure-the-mosquitto-mqtt-messaging-broker-on-centos-7] | ||
*[https://openest.io/en/2020/01/03/mqtts-how-to-use-mqtt-with-tls/ Mosquitto with tls] | *[https://openest.io/en/2020/01/03/mqtts-how-to-use-mqtt-with-tls/ Mosquitto with tls] | ||
[[Category:IoT]][[Category:MQTT]] | [[Category:IoT]][[Category:MQTT]] |
Revision as of 05:26, 27 October 2023
Mosquitto on Ubuntu
To use mosquitto on all interfaces and anonymous. Add these lines to /etc/mosqquitto/mosquitto.cond
allow_anonymous true
listener 1883 0.0.0.0