self hosted integration runtime - find client

Müller, André 71 Reputation points
2022-05-30T07:52:06.227+00:00

Hi, how can i find the client / vm where the self hosted integration runtime was installed? In data factory configuration only the public ip is available. Thx for any helpful information

Azure Virtual Network
Azure Virtual Network
An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
{count} votes

1 answer

Sort by: Most helpful
  1. ChaitanyaNaykodi-MSFT 27,661 Reputation points Microsoft Employee Moderator
    2022-05-31T00:28:08.437+00:00

    Hello @Müller, André ,

    If I understand correctly from the question, you need to find the VM where self-hosted integration runtime was installed, and you know the public IP associated with this VM.

    • If public IP value/name is known, you can do a search on Azure portal for the particular IP value/name as shown below (Please make sure you have selected the correct subscription in the portal)

    206809-image.png

    When you get the public IP resource, you can get the associated NIC with the IP on the overview page as shown below.

    206863-image.png

    When you click on the NIC above, on its overview page you will see the associated VM.

    206767-image.png

    • If method above is not preferrable you can run below PowerShell commands to find the VM.

    Get-AzPublicIpAddress -Name <PublicIPName>

    In the IP configuration section you will get the information on your NIC, using which you can run the below command to get information on VM associate with the NIC.

    Get-AzNetworkInterface -Name <NICName> -ResourceGroupName <RGName>

    If you do not have PowerShell set-up on your local machine, you can use Azure cloudshell to run these commands.

    Hope this helps! Please let me know if you have any additional questions. Thank you!

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.