Skip to content

Instantly share code, notes, and snippets.

@naixsky
Forked from lashex/aws-iot-mosquitto
Created May 17, 2018 09:58
Show Gist options
  • Save naixsky/f2f94d7ea73baf91cefd217622f6c676 to your computer and use it in GitHub Desktop.
Save naixsky/f2f94d7ea73baf91cefd217622f6c676 to your computer and use it in GitHub Desktop.
Example Mosquitto CLI pub/sub using AWS IoT MQTT endpoint
The Mosquitto Pub CLI
$> mosquitto_pub --cert thing-0.pem --key thing-0.prv --cafile aws-iot-rootCA.crt -h XXXXXXXXYYYYY.iot.us-west-2.amazonaws.com -p 8883 -t 'test/thing' -m "Hello from Mosquitto"
The Mosquitto Sub CLI
$ mosquitto_sub --cert thing-0.pem --key thing-0.prv --cafile aws-iot-rootCA.crt -h XXXXXXXXYYYYY.iot.us-west-2.amazonaws.com -p 8883 -t 'test/+'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment