我使用 powershell 创建了一个自托管的集成运行时:
Set-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $resourceGroupName -DataFactoryName $dataFactoryName -Name $selfHostedIntegrationRuntimeName -Type SelfHosted -Description "selfhosted IR description"
但是当我检查 Azure Datafactory 门户,然后选择 Integration Runtime 时,我看不到它。当我通过创建。门户对我来说是可见的。我可以在 Powershell 中检查它的状态,它存在于那里。
Get-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $resourceGroupName -DataFactoryName $dataFactoryName -Name $selfHostedIntegrationRuntimeName -Status
我什至可以注册它,我看到它的状态是在线的,但门户中没有显示任何内容。
有什么理由不显示吗?