DEV Community

Olalekan Oladiran
Olalekan Oladiran

Posted on

HOW TO CREATE A STORAGE ACCOUNT AND UPLOADING ON BLOB STORAGE.

What is storage account

An Azure Storage service group is contained within a storage account. A storage account can only contain data services from Azure Storage. An Azure resource that is a member of a resource group is a storage account.
There are four types of storage account in Azure namely:

  1. Blob storage
  2. Azure Files
  3. Azure Queues
  4. Azure Tables

Creating a storage account.

  • Log into your azure account.
  • Click create Image description
  • Search storage account in the market place Image description
  • Select storage account and click create Image description
  • Fill in the project details which include subscription and resource group; you can choose an existing group or create a new one Image description
  • Next is to fill the instance details which comprises storage account name, region, performance and redundancy. You can choose any name for your storage account. Image description
  • Leave other settings as default and click review Image description Image description
  • Once the validation is passed, click create
    Image description

  • Wait for it to deploy
    Image description

  • After deployment is complete, click go to resource
    Image description

  • This will take you to overview page of your storage account
    Image description

How to upload and access uploaded files in storage account

  • In the overview page, change blob anonymous access to enabled by clicking on it, select enabled and click save Image description Image description Image description
  • Click container Image description
  • Click + container to create a new container Image description
  • Supply the name for your container, change the access level to blob and click create Image description
  • This will bring you to the page with the newly created container Image description
  • Open the new container by clicking on it and select upload. Image description
  • Browse for files to upload Image description
  • Click upload Image description
  • Once the upload is successful, the uploaded file will be listed in your container Image description

How to access the uploaded file in a container

  • Click on the file and copy the file url Image description
  • Open a new browser, paste and search the copied url Image description

Top comments (0)