Home > Back-end >  Azure IoT Hub missing in Azure IoT Edge installation on Ubuntu 20.04
Azure IoT Hub missing in Azure IoT Edge installation on Ubuntu 20.04

Time:05-03


I have a Raspberry 3B with Ubuntu 20.04 LTS Server installed.
This device should work as an Azure IoT Edge device. For that purpose i have made all steps like in the Microsoft documentation, without getting any error. I used the following repository from microsoft as shown in the documentation
But if i check the IoT Edge installation the IoT Hub container is missing, which should be part of the installation.
Microsoft documentation: https://docs.microsoft.com/en-us/azure/iot-edge/how-to-provision-single-device-linux-symmetric?view=iotedge-2020-11&tabs=azure-portal,ubuntu


Does anyone have the same problem?

Images from PowerShell:
IoT Edge Check Output
IoT Edge installed version
IoT Edge list IoT Edge system status
Azure portal status of IoT Edge

CodePudding user response:

When deploying Azure IoT Edge for the first time, only the edgeAgent module will spin up.

Once a (custom) module is assigned to the Edge device, using the deployment manifest, the edgeHub module will be loaded and started, together with the new module.

Please check this behavior.

  • Related