zubair1024
4/9/2019 - 11:49 AM

MQTT Mosquitto Test Commands

# MQTT Commands

mosquitto_pub -h localhost -t test -m "hello world"
mosquitto_sub -h localhost -t test

# MQTTS Commands with Password Protection
mosquitto_sub -h localhost -t test -u "username" -P "password"
mosquitto_pub -h localhost -t "test" -m "hello world" -u "username" -P "password"