DEV Community

Cover image for Azure Storage Account: Unleash the Potential of Cloud-Based Storage
Gbadamosi Tajudeen
Gbadamosi Tajudeen

Posted on • Updated on

Azure Storage Account: Unleash the Potential of Cloud-Based Storage

Go to [https://portal.azure.com] and log in to the Azure portal.
Type "Storage account" into the search bar and click "Storage account."

Azure Storage Account
To start the creation process of the storage account, click the "Create" button.
Storage Account creation

Enter the following information in the "Basics" tab:

  • Subscription: Choose the one you wish to use for the storage account.
  • Resource group: Select an already-existing resource group or establish one from scratch "Adex".

Azure Resource creation

  • Storage account name: Give your storage account a distinctive name "matrix001".
  • Location: Choose the area where your storage account should be hosted "East US".
  • Performance: Select the Standard or Premium performance tier for your storage account.
  • Replication: Pick a replication method based on your requirements, (such as locally redundant storage (LRS).

Azure storage account information input

Click on the "Next" button to proceed to the next tab.

In the "Advanced" tab, you can configure additional settings if needed. The default options should be suitable for most scenarios, but you can adjust them as per your requirements.
Click on the "Next" button to proceed to the next tab.
In the "Tags" tab, you can optionally add tags to your storage account for better organization and management. Tags are name-value pairs that help you categorize resources.
Review the configuration details on the "Review + create" tab to ensure everything is correct.
Click on the “Create” button to start the creation process. Azure will now deploy your storage account.
Create storage account
Allow the deployment to be completed. You can monitor the progress by viewing the deployment's progress on the deployment page.
Azure Deployment progress

You successfully created an Azure Storage account after the deployment is complete. You may now manage and save your data on Azure using this storage account.
Azure storage account created

Create a Container

To create a container “click on container”
create a container
Enter name “Matrix” and Select “Blob” to enable public access and click “Create”
create a container
The container is finally created
container created

Upload a File into the Container

To upload an unstructured data into the container created e.g. “Matrix”
Click on upload
Upload file to Azure container
Click on browse to locate the file to be uploaded
locate the file from local PC
Select file from your local PC storage
Select file
Click on upload
Upload file to Azure container
File uploaded successfully
File uploaded
However to enable the file to be shared with people, click on the downloaded file and copy the Url.
Url from Azure container
Paste the Url on a browser to view your upload.
image displayed successfully on browser

Change Tier: Hot, Cool and Archive

Azure offers three storage tiers: Hot, Cool, and Archive. To assist organization in managing their data storage based on various usage patterns and financial considerations, Here is a quick breakdown of each tier:

Hot: Azure's "Hot" tier is created for frequently accessed data that demands quick access and high-performance storage. Although it costs higher than other levels, it has the best availability and shortest access times. Active databases, real-time analytics, and regularly viewed files are examples of the types of data that are appropriate for the Hot tier and are necessary for day-to-day operations.

Change tier: Hot
Cool: The "Cool" tier is intended for less frequently used data but nonetheless needs rapid access when needed. Compared to the Hot tier, it offers a more affordable storage alternative. Backups, archive data, disaster recovery data, and files that are rarely used but yet need quick access times should all be stored in the Cool tier.

Change tier: Cool
The "Archive" tier of Azure's storage is the least expensive option and is intended for long-term storage of data that is infrequently accessed but must be kept for compliance or regulatory purposes. The Archive layer has a retrieval time delay but has the lowest storage cost. It is perfect for keeping historical data, records required by regulations, and other information that must be kept for a long period but is not likely to be often accessed.

Change tier: Archive
In conclusion, Organizations may reduce storage costs while ensuring the appropriate degree of speed and availability for their data depending on usage patterns and retention needs by employing Azure's Hot, Cool, and Archive storage tiers. Depending on changing demands, Azure offers the freedom to transfer data across various tiers with ease, enabling effective data management and cost reduction.

Top comments (0)