DEV Community

Peter Edozie
Peter Edozie

Posted on

Creating a Storage Account in Azure

Azure Storage is a Microsoft-managed service providing cloud storage that is highly available, secure, durable, scalable, and redundant. Azure Storage includes Azure Blobs (objects), Azure Data Lake Storage Gen2, Azure Files, Azure Queues, and Azure Tables.

In this task, we will create a storage account, then work with blob storage files, and Monitor.

Create a storage account

  1. Sign in to the Azure portal
  2. Search for and select Storage accounts
  3. Click on Create
  4. Select the subscription in which to create the new storage
    account. Choose a new or existing resource group to organize
    and manage your storage account together with other resources.

    Redundancy available on Azure, We will use Locally redundant storage (LRS) for this task
    Image description

  5. Click Review + Create to review your storage account settings and allow Azure to validate the configuration.
    Image description

  6. Once validated, Click create
    Image description

  7. Wait for your deployment is complete then click Go To Resource
    Image description
    OR
    From the Home page, search for and select Storage accounts and ensure your new storage account is listed.
    Image description

Work with blob storage

  1. Click the name of the new storage account, scroll to the Data storage section in the left menu, and then click Containers. Image description
  2. Click + Container and complete the information. Use the Information icons to learn more. When done click Create. Image description
  3. Open a new browser window and search Bing for an image of a flower. Right click on the image and save it to your downloads.
  4. Back in the Portal, click on container1 , and then select Upload. Image description
  5. Browse for the image file you just saved on your local computer. Select it and then select upload.
  6. Click the Advanced arrow, leave the default values but review the available options, and then click Upload.

Note: You can upload as many blobs as you like in this way. New blobs will be listed within the container.

  1. Once the file is uploaded, right-click on the file and notice the options including View/edit, Download, Properties, and Delete. Image description

How to Monitor the created storage account

  1. Return to the storage account blade and click Diagnose and solve problems.Image description

  2. Explore some of the most common storage problems. Notice there are multiple troubleshooters here.

  3. On the storage account blade, scroll down to the Monitoring section and click Insights. Notice there is information on Failures, Performance, Availability, and Capacity. Your information will be different.
    Image description Image descriptionImage descriptionImage description

Awesome! You have created a storage account, then worked with storage blobs.

Note: To avoid additional costs, you can optionally remove this resource group. Search for resource groups, click your resource group, and then click Delete resource group. Verify the name of the resource group and then click Delete. Monitor the Notifications to see how the delete is proceeding.

Top comments (0)