title | description | services | author | ms.component | ms.service | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|
Create an Azure Data Lake Storage Gen2 storage account | Microsoft Docs |
Quickly learn to create a new storage account with access to Data Lake Storage Gen2 using the Azure portal, Azure PowerShell, or the Azure CLI |
storage |
jamesbak |
data-lake-storage-gen2 |
storage |
quickstart |
12/06/2018 |
jamesbak |
Azure Data Lake Storage Gen2 supports a Hierarchical Namespace Service which provides a native directory-based file system tailored to work with the Hadoop Distributed File System (HDFS). Access to Data Lake Storage Gen2 data from the HDFS is available through the ABFS driver.
This quickstart demonstrates how to create an account using the Azure portal, Azure PowerShell, or via the Azure CLI.
If you don't have an Azure subscription, create a free account before you begin.
Prerequisite | |
---|---|
Portal | None |
PowerShell | This quickstart requires the PowerShell module Az.Storage version 0.7 or later. To find your current version, run the Get-Module -ListAvailable Az.Storage command. If after you run this command, no results appear, or if a version other than 0.7 appears, then you'll have to upgrade your powershell module. See the Upgrade your powershell module section of this guide. |
CLI | You can log in to Azure and run Azure CLI commands in one of two ways:
|
When working on the command line you have the option of running the Azure Cloud shell or installing the CLI locally.
Azure Cloud Shell is a free Bash shell that you can run directly within the Azure portal. It has the Azure CLI preinstalled and configured to use with your account. Click the Cloud Shell button on the menu in the upper-right of the Azure portal:
The button launches an interactive shell that you can use to run the steps in this quickstart:
You can also install and use the Azure CLI locally. This quickstart requires that you are running the Azure CLI version 2.0.38 or later. Run az --version
to find the version. If you need to install or upgrade, see Install the Azure CLI.
Before you create an account, you first create a resource group that acts as a logical container to storage accounts or any other Azure resources you create. If you wish to clean up the resources created by this quickstart, you can simply delete the resource group. Deleting the resource group also deletes the associated storage account, and any other resources associated with the resource group. For more information regarding resource groups, see Azure Resource Manager overview.
Note
You must create new storage accounts as type StorageV2 (general-purpose V2) to take advantage of Data Lake Storage Gen2 features.
For more information about storage accounts, see Azure Storage account overview.
When naming your storage account, keep these rules in mind:
- Storage account names must be between 3 and 24 characters in length and may contain numbers and lowercase letters only.
- Your storage account name must be unique within Azure. No two storage accounts can have the same name.
Log in to the Azure portal.
To create a resource group in the Azure portal, follow these steps:
-
In the Azure portal, expand the menu on the left side to open the menu of services, and choose Resource Groups.
-
Click the Add button to add a new resource group.
-
Enter a name for the new resource group.
-
Select the subscription in which to create the new resource group.
-
Choose the location for the resource group.
-
Click the Create button.
To create a general-purpose v2 storage account in the Azure portal, follow these steps:
Note
The hierarchical namespace is currently available in all public regions. It is currently unavailable in sovereign clouds.
-
In the Azure portal, expand the menu on the left side to open the menu of services, and choose All services. Then, scroll down to Storage, and choose Storage accounts. On the Storage Accounts window that appears, choose Add.
-
Select your Subscription and the Resource group you created earlier.
-
Enter a name for your storage account.
-
Set Location to West US 2
-
Leave these fields set to their defaults: Performance, Account kind, Replication, Access tier.
-
Choose the subscription in which you want to create the storage account.
-
Select Next : Advanced >
-
Leave the values under SECURITY and VIRTUAL NETWORKS fields set to their defaults.
-
In the Data Lake Storage Gen2 (preview) section set Hierarchical namespace to Enabled.
-
Click Review + Create to create the storage account.
Your storage account is now created through the portal.
To remove a resource group using the Azure portal:
- In the Azure portal, expand the menu on the left side to open the menu of services, and choose Resource Groups to display the list of your resource groups.
- Locate the resource group to delete, and right-click the More button (...) on the right side of the listing.
- Select Delete resource group, and confirm.
First, install the latest version of the PowerShellGet module.
Then, upgrade your powershell module, log in to your Azure subscription, create a resource group, and then create a storage account.
To interact with Data Lake Storage Gen2 by using PowerShell, you'll need to install module Az.Storage version 0.7 or later.
Start by opening a PowerShell session with elevated permissions.
Then, determine if you have the AzureRM.Storage module installed.
Get-Module -ListAvailable AzureRM.Storage
If a module appears, then uninstall it.
Uninstall-Module AzureRM.Storage -Force
Install the Az.Storage module
Install-Module Az.Storage –Repository PSGallery -RequiredVersion .07 –AllowPrerelease –AllowClobber –Force
Enable compatibility mode for AzureRM.
Enable-AzureRMAlias
Compatibility mode means that any scripts that use the AzureRM.Storage module will continue to work even though you've uninstalled the AzureRM.Storage module.
Note
Azure Powershell Az modules are the preferred modules for working with Azure services in Powershell. To learn more, see Introducing the new Azure PowerShell Az module.
Use the Login-AzureRmAccount
command and follow the on-screen directions to authenticate.
Login-AzureRmAccount
To create a new resource group with PowerShell, use the New-AzureRmResourceGroup command:
Note
The hierarchical namespace is currently available in all public regions. It is currently unavailable in sovereign clouds.
# put resource group in a variable so you can use the same group name going forward,
# without hardcoding it repeatedly
$resourceGroup = "storage-quickstart-resource-group"
$location = "westus2"
New-AzureRmResourceGroup -Name $resourceGroup -Location $location
To create a general-purpose v2 storage account from PowerShell with locally-redundant storage (LRS), use the New-AzureRmStorageAccount command:
$location = "westus2"
New-AzureRmStorageAccount -ResourceGroupName $resourceGroup `
-Name "storagequickstart" `
-Location $location `
-SkuName Standard_LRS `
-Kind StorageV2 `
-EnableHierarchicalNamespace $True
To remove the resource group and its associated resources, including the new storage account, use the Remove-AzureRmResourceGroup command:
Remove-AzureRmResourceGroup -Name $resourceGroup
To start Azure Cloud Shell, log in to the Azure portal.
If you want to log into your local installation of the CLI, run the login command:
az login
To interact with Data Lake Storage Gen2 by using the CLI, you'll have to add an extension to your shell.
To do that, enter the following command by using either the Cloud Shell or a local shell: az extension add --name storage-preview
To create a new resource group with Azure CLI, use the az group create command.
az group create `
--name storage-quickstart-resource-group `
--location westus2
Note
The hierarchical namespace is currently available in all public regions. It is currently unavailable in sovereign clouds.
To create a general-purpose v2 storage account from the Azure CLI with locally-redundant storage, use the az storage account create command.
az storage account create `
--name storagequickstart `
--resource-group storage-quickstart-resource-group `
--location westus2 `
--sku Standard_LRS `
--kind StorageV2 `
--hierarchical-namespace true
To remove the resource group and its associated resources, including the new storage account, use the az group delete command.
az group delete --name myResourceGroup
In this quickstart, you've created a storage account with Data Lake Storage Gen2 capabilities. To learn how to upload and download blobs to and from your storage account, see the following topic.