After installing Azure IoT Edge using the guide for Linux ARM32, the following error was presented: “iotedge: error while loading shared libraries: libssl.so.1.0.2: cannot open shared object file: No such file or directory”.

The fix was simple enough, just install the building libssl1.0.2 using the following command:

sudo apt-get install libssl1.0.2

Test by running the iotedge command:

iotedge

If that works successfully, restart the iotedge service:

sudo service iotedge restart

Verify that it is running by checking the service status:

sudo service iotedge status