meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
sw:ansible:mqtt [2025/10/21 09:17] – created niziaksw:ansible:mqtt [2025/10/21 10:45] (current) niziak
Line 6: Line 6:
 docker run -it hivemq/mqtt-cli shell docker run -it hivemq/mqtt-cli shell
  
 +con -h mqtt.example.com -p 1884
  
 </code> </code>
  
 +mosquitto_pub -h mqtt.example.com -p 1884 -t test -m "test"
 +
 +
 +<code bash>
 +sudo apt install node-mqtt
 +mqtt publish -t 'test' -m 'test' -h 'mqtt.example.com' -p 1884
 +</code>