Конфигурация развертывания в требуемых свойствах пограничного агента пуста

Я столкнулся с проблемой, как сказал заголовок.

Описание:

1.Я использую DPS с fTPM, платформой Windows.

2. После запуска Initialize-IoTEdge -dps в powershell я получаю сообщение об ошибке в журнале EdgeAgent:"Конфигурация развертывания в требуемых свойствах пограничного агента пуста".

Нужны помощь и предложение. Спасибо!

Это мой код для регистрации устройства в DPS.

 #region Create a new individualEnrollment config

                rootPage.NotifyUser("\nCreating a new individualEnrollment...", NotifyType.StatusMessage);
                Attestation attestation = new TpmAttestation(TpmEndorsementKey);
                IndividualEnrollment individualEnrollment =
                        new IndividualEnrollment(
                                RegistrationId,
                                attestation);

                // The following parameters are optional. Remove them if you don't need them.
                individualEnrollment.DeviceId = OptionalDeviceId;
                individualEnrollment.ProvisioningStatus = ENABLE;
                individualEnrollment.Capabilities = new DeviceCapabilities { IotEdge = true };

                #endregion

                #region Create the individualEnrollment

                rootPage.NotifyUser("\nAdding new individualEnrollment...", NotifyType.StatusMessage);
                IndividualEnrollment individualEnrollmentResult =
                    await provisioningServiceClient.CreateOrUpdateIndividualEnrollmentAsync(individualEnrollment).ConfigureAwait(false);
                rootPage.NotifyUser("\nIndividualEnrollment created with success.", NotifyType.StatusMessage);
                rootPage.NotifyUser(individualEnrollmentResult.ToString(), NotifyType.StatusMessage);

Журнал модуля пограничного агента:

2019-07-18 22:56:41.751 -07:00 [INF] - Edge agent connected to IoT Hub via Amqp_Tcp_Only.
2019-07-18 22:56:42.613 -07:00 [INF] - Obtained Edge agent twin from IoTHub with desired properties version 1 and reported properties version 1.
2019-07-18 22:56:42.641 -07:00 [INF] - Deployment config in edge agent's desired properties is empty.
2019-07-18 22:56:42.642 -07:00 [ERR] - Error refreshing edge agent configuration from twin.
Microsoft.Azure.Devices.Edge.Agent.Core.ConfigSources.ConfigEmptyException: This device has an empty configuration for the edge agent. Please set a deployment manifest.
   at Microsoft.Azure.Devices.Edge.Agent.IoTHub.EdgeAgentConnection.UpdateDeploymentConfig() in C:\agent\_work\4\s\edge-agent\src\Microsoft.Azure.Devices.Edge.Agent.IoTHub\EdgeAgentConnection.cs:line 232
   at Microsoft.Azure.Devices.Edge.Agent.IoTHub.EdgeAgentConnection.RefreshTwinAsync() in C:\agent\_work\4\s\edge-agent\src\Microsoft.Azure.Devices.Edge.Agent.IoTHub\EdgeAgentConnection.cs:line 187
2019-07-18 22:56:43.015 -07:00 [INF] - Updated reported properties

1 ответ

На портале вашего IoT-концентратора IoT Edge-> выберите устройство IoT Edge-> установить модуль-> следующий-> следующий-> отправить.

Тогда edgeAgent получит нужные свойства.

Это, вероятно, новый шаг, который я не сделал в предыдущих версиях?

Другие вопросы по тегам