Skip to content

Commit 8503c51

Browse files
committed
tab edits
1 parent b7c1a0b commit 8503c51

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/storage/files/glusterfs-migration-guide.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ rsync -avz --progress --stats --delete <GlusterFS_Source>/ <AzureFiles_Destinati
8787

8888
### Step 2: Prepare Azure environment
8989

90-
1. Create a storage account in the appropriate Azure region.
90+
1. [Create a storage account](../common/storage-account-create.md) in the appropriate Azure region.
9191
- Choose the right performance tier (Standard or Premium) based on your needs. Premium is required for NFS file shares.
9292

9393
1. Configure networking. See [Azure Files networking considerations](storage-files-networking-overview.md).
@@ -98,13 +98,17 @@ rsync -avz --progress --stats --delete <GlusterFS_Source>/ <AzureFiles_Destinati
9898

9999
### Step 3: Mount Azure file share
100100

101-
Before migrating the data, you must mount the Azure file share(s). This article shows how to mount the Azure file share using NTLMv2 authentication (storage account key). In non-administrative scenarios, using identity-based authentication is preferred for security reasons. You can find your storage account key in the [Azure portal](https://portal.azure.com/) by navigating to the storage account and selecting **Security + networking** > **Access keys**, or you can use the `Get-AzStorageAccountKey` PowerShell cmdlet.
101+
Before migrating the data, you must mount the Azure file share(s).
102102

103103
# [Windows](#tab/windows)
104104

105105
#### For Windows clients (SMB):
106106

107-
Be sure to replace `<storage-account-name>`, `<share-name>`, and `<storage-account-key>` with your actual values.
107+
This article shows how to mount the Azure file share using NTLMv2 authentication (storage account key). In non-administrative scenarios, using [identity-based authentication](storage-files-active-directory-overview.md) is preferred for security reasons.
108+
109+
You can find your storage account key in the [Azure portal](https://portal.azure.com/) by navigating to the storage account and selecting **Security + networking** > **Access keys**, or you can use the `Get-AzStorageAccountKey` PowerShell cmdlet.
110+
111+
To mount the file share, run the following command. Be sure to replace `<storage-account-name>`, `<share-name>`, and `<storage-account-key>` with your actual values.
108112

109113
```powershell
110114
net use Z: \\<storage-account-name>.file.core.windows.net\<share-name> /u:AZURE\<storage-account-name> <storage-account-key>
@@ -114,7 +118,7 @@ net use Z: \\<storage-account-name>.file.core.windows.net\<share-name> /u:AZURE\
114118

115119
#### For Linux clients (NFS):
116120

117-
Be sure to replace `<storage-account-name>`, `<share-name>`, and `<mount-point>` with your actual values.
121+
To mount the file share, run the following command. Be sure to replace `<storage-account-name>`, `<share-name>`, and `<mount-point>` with your actual values.
118122

119123
```bash
120124
sudo mount -t nfs <storage-account-name>.file.core.windows.net:/<storage-account-name>/<share-name> <mount-point> -o vers=4.1,sec=sys

0 commit comments

Comments
 (0)