0
votes

I have created a self-hosted integration runtime using powershell :

Set-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $resourceGroupName -DataFactoryName $dataFactoryName -Name $selfHostedIntegrationRuntimeName -Type SelfHosted -Description "selfhosted IR description"

But when I check the Azure Datafactory portal and then select Integration Runtime I can't see it. When I create via. portal it's visible to me. I can check its status in Powershell it exists there.

 Get-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $resourceGroupName -DataFactoryName $dataFactoryName -Name $selfHostedIntegrationRuntimeName -Status

I was even able to register it and I see its status is online but nothing is shown in the portal.

Is there any reason it's not shown?

1
Double-check whether you didn't confuse the target name of ADF. Maybe via PowerShell, you deployed it to another ADF...?Kamil Nowinski

1 Answers

0
votes

I found the solution. In Portal it's showing by default from master branch. I needed to switch to live mode to see all integrations.