Hello @Konrad Majcherczyk !
You are on the right track. A self-hosted integration runtime (IR) is required for copying files from your local file system to Azure Storage.
The Linked Service configuration for a File System requires three pieces of information:
Host: This is the name of the machine where the file resides. If the file is on the same machine as the Self-Hosted IR, you can use 'localhost'. If it's on a different machine, use the machine's network name or IP address.
User name: This is the username of a user account on the host machine that has permissions to access the file you want to copy. The username should be entered in the format Domain\Username
or MachineName\Username
if you don't have a domain. If you are on a Windows machine, you can find out your machine name by opening a command prompt and typing hostname
.
- Password: This is the password for the user account you specified in the User Name field.
Also the resources should be able to communicate with each other on the network level !
I hope this helps!
Kindly mark the answer as Accepted and Upvote in case it helped!
The answer or portions of it may have been assisted by AI Source: ChatGPT Subscription
Regards