Tag: Azure

Upload files to Azure storage account securely from Ubuntu

Pre-requisites: 1 – Azcopy 2 – Storage account path Step: 1 #Download azcopy to the ubuntu vm wget “https://aka.ms/downloadazcopy-v10-linux” -O azcopy.tar.gz #Example root@LINUX01:~# wget “https://aka.ms/downloadazcopy-v10-linux” -O azcopy.tar.gz –2022-12-18 11:04:01– https://aka.ms/downloadazcopy-v10-linux Resolving aka.ms (aka.ms)… 23.52.149.185 Connecting to aka.ms (aka.ms)|23.52.149.185|:443… connected. HTTP request sent, awaiting response… 301 Moved Permanently Location: https://azcopyvnext.azureedge.net/release20221108/azcopy_linux_amd64_10.16.2.tar.gz [following] –2022-12-18 11:04:01– https://azcopyvnext.azureedge.net/release20221108/azcopy_linux_amd64_10.16.2.tar.gz Resolving azcopyvnext.azureedge.net […]

Azure Basics – Service Principal creation

Service principal in Azure is used for accessing the Azure resources by third-party applications, automation tools, and applications. An Azure admin can control the access level for these Service principals and it’s always a better approach to provide only required privileges than an application required to access the resources. Service Principal is a kind of […]