| Create CA | Configure Event Grid | Configure Mosquitto | Development tools |
Once your environment is configured you can configure your connection settings as environment variables that will be loaded by the Mqtt client extensions
All samples require a CA to generate the client certificates to connect.
- Follow this link to install the
step cli
: https://smallstep.com/docs/step-cli/installation/ - To create the root and intermediate CA certificates run:
step ca init \
--deployment-type standalone \
--name MqttAppSamplesCA \
--dns localhost \
--address 127.0.0.1:443 \
--provisioner MqttAppSamplesCAProvisioner
Follow the cli instructions, when done make sure you remember the password used to protect the private keys, by default the generated certificates are stored in:
~/.step/certs/root_ca.crt
~/.step/certs/intermediate_ca.crt
~/.step/secrets/root_ca_key
~/.step/secrets/intermediate_ca_key
Create or update az.env
file under MQTTApplicationSamples folder that includes an existing subscription, an existing resource group, and a new name of your choice for the Event Grid Namespace as follows:
sub_id=<subscription-id>
rg=<resource-group-name>
name=<event-grid-namespace>
res_id="/subscriptions/${sub_id}/resourceGroups/${rg}/providers/Microsoft.EventGrid/namespaces/${name}"
To run the az
cli:
- Install AZ CLI
- Authenticate using
az login
. - If the above does not work use
az login --use-device-code
source az.env
az account set -s $sub_id
az resource create --id $res_id --is-full-object --properties '{
"properties": {
"isZoneRedundant": true,
"topicsConfiguration": {
"inputSchema": "CloudEventSchemaV1_0"
},
"topicSpacesConfiguration": {
"state": "Enabled"
}
},
"location": "westus2"
}'
Register the certificate to authenticate client certificates (usually the intermediate)
source az.env
capem=`cat ~/.step/certs/intermediate_ca.crt | tr -d "\n"`
az resource create \
--id "$res_id/caCertificates/Intermediate01" \
--properties "{\"encodedCertificate\" : \"$capem\"}"
Each scenario includes the detailed instructions to configure the namespace resources needed for the scenario.
Note
For portal configuration, use this link and follow these instructions.
Install mosquitto
sudo apt-get update && sudo apt-get install mosquitto -y
The local instance of mosquitto requires a certificate to expose a TLS endpoint, the chain chain.pem
used to create this cert needs to be trusted by clients.
Using the test ca, create a certificate for localhost
, and store the certificate files in the _mosquitto
folder.
# from folder _mosquitto
cat ~/.step/certs/root_ca.crt ~/.step/certs/intermediate_ca.crt > chain.pem
step certificate create localhost localhost.crt localhost.key \
--ca ~/.step/certs/intermediate_ca.crt \
--ca-key ~/.step/secrets/intermediate_ca_key \
--no-password \
--insecure \
--not-after 2400h
These files are used by the mosquitto configuration file tls.conf
per_listener_settings true
listener 1883
allow_anonymous true
listener 8883
allow_anonymous true
require_certificate true
cafile chain.pem
certfile localhost.crt
keyfile localhost.key
tls_version tlsv1.2
To start mosquitto with this configuration file run:
mosquitto -c tls.conf
If you get Error: Address already in use
, you can run
ps -ef | grep mosquitto
to find the running mosquitto instance, and use the process id returned to end it:
sudo kill <process id>
This repo leverages GitHub CodeSpaces, with a preconfigured .devContainer
that includes all the required tools and SDK, and also a local mosquitto, and the step
cli.
The samples use dotnet7
, it can be installed in Windows, Linux, or Mac from https://dotnet.microsoft.com/en-us/download
Optionally you can use Visual Studio to build and debug the sample projects.
See dotnet extensions for more details.
We are using standard C, and CMake to build. These are the required tools:
- CMake Version 3.20 or higher to use CMake presets
- Mosquitto Version 2.0.0 or higher
- Ninja build system Version 1.10 or higher
- GNU C++ compiler
- SSL
- UUID Library (if running a sample that uses correlation IDs - currently this is the Command Samples)
An example of installing these tools (other than CMake) is shown below:
sudo apt-add-repository ppa:mosquitto-dev/mosquitto-ppa
sudo apt-get install g++-multilib ninja-build libmosquitto-dev libssl-dev
# If running a sample that uses Correlation IDs
sudo apt-get install uuid-dev
See c extensions for more details.
Python samples have been tested with python 3.10.4, to install follow the instructions from https://www.python.org/downloads/