用于Windows上Linux的Iot Edge(EFLOW)部署失败

vulvrdjw  于 2023-11-21  发布在  Windows
关注(0)|答案(2)|浏览(173)

我有点疯狂这个问题.我有一个虚拟机与Windows 10和按照说明安装EFLOW:

  1. Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
  2. $msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
  3. $ProgressPreference = 'SilentlyContinue'
  4. Invoke-WebRequest "https://aka.ms/AzEFLOWMSI_1_4_LTS_X64" -OutFile $msiPath
  5. Start-Process -Wait msiexec -ArgumentList "/i","$([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))","/qn"
  6. Get-ExecutionPolicy -List
  7. Set-ExecutionPolicy -ExecutionPolicy AllSigned -Force
  8. Deploy-Eflow

字符串
阅读了很多文章,但我总是得到这个错误:

  1. PS C:\Users\iotedge> Deploy-Eflow
  2. [11/09/2023 11:10:02] Deploying Azure IoT Edge for Linux on Windows
  3. - Configuration 'eflowBaseDir' is not present. A default will be applied.
  4. - Configuration 'eflowVhdxDir' is not present. A default will be applied.
  5. [11/09/2023 11:10:02] Exception caught!!!
  6. - Could not find a part of the path 'C:\Users\iotedge\LICENSE\Azure IoT Edge for Linux on Windows - Standalone (free) Use Terms (11.1.21).rtf'. (L427)
  7. [11/09/2023 11:10:02] In order to attempt another deployment, please uninstall the Azure IoT Edge msi and start from fresh
  8. Get-ItemProperty : Property MachineId does not exist at path HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SQMClient.
  9. At C:\Program Files\WindowsPowerShell\Modules\AzureEFLOW\AzureEFLOW.psm1:6674 char:31
  10. + ... ] $sqmId = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\SQMClien ...
  11. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  12. + CategoryInfo : InvalidArgument: (MachineId:String) [Get-ItemProperty], PSArgumentException
  13. + FullyQualifiedErrorId : System.Management.Automation.PSArgumentException,Microsoft.PowerShell.Commands.GetItemPr
  14. opertyCommand
  15. Could not find a part of the path 'C:\Users\iotedge\LICENSE\Azure IoT Edge for Linux on Windows - Standalone (free) Use Terms (11.1.21).rtf'.


有提示吗?谢谢。

o2rvlv0m

o2rvlv0m1#

问题似乎是Power Shell x86

tmb3ates

tmb3ates2#

我以前遇到过这个错误.我怀疑你正在尝试在Windows服务器上安装Eflow.有时,Windows服务器没有在其信任存储所需的所有证书,它将以这种方式失败.
请访问https://learn.microsoft.com/en-us/azure/aks/hybrid/aks-edge-howto-offline-install#windows-certificates这一部分,其中介绍了如何检查您是否拥有相关证书。如果缺少任何证书,您将需要获取缺少的证书并将其安装到本地计算机的可信存储中。

相关问题