Skip to content

Commit 9405789

Browse files
Merge pull request #177272 from roygara/nfsMount
Adding secure transfer disable, updating steps, screenshot.
2 parents d3155d0 + 764a394 commit 9405789

File tree

5 files changed

+32
-6
lines changed

5 files changed

+32
-6
lines changed
208 KB
Loading

articles/storage/files/storage-files-how-to-create-nfs-shares.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to create an Azure file share that can be mounted using t
44
author: roygara
55
ms.service: storage
66
ms.topic: how-to
7-
ms.date: 07/01/2021
7+
ms.date: 10/25/2021
88
ms.author: rogarana
99
ms.subservice: files
1010
ms.custom: references_regions, devx-track-azurecli, devx-track-azurepowershell
@@ -106,7 +106,7 @@ Currently, NFS 4.1 shares are only available as premium file shares. To deploy a
106106
# [Portal](#tab/azure-portal)
107107
To create a FileStorage storage account, navigate to the Azure portal.
108108

109-
1. In the Azure portal, select **Storage Accounts** on the left menu.
109+
1. In the [Azure portal](https://portal.azure.com/), select **Storage Accounts** on the left menu.
110110

111111
![Azure portal main page select storage account.](media/storage-how-to-create-premium-fileshare/azure-portal-storage-accounts.png)
112112

@@ -162,6 +162,32 @@ az storage account create \
162162
```
163163
---
164164

165+
## Disable secure transfer
166+
167+
You can't mount an NFS file share unless you disable secure transfer.
168+
169+
# [Portal](#tab/azure-portal)
170+
171+
1. Navigate to the storage account you created.
172+
1. Select **Configuration**.
173+
1. Select **Disabled** for **Secure transfer required**.
174+
1. Select **Save**.
175+
176+
:::image type="content" source="media/storage-files-how-to-mount-nfs-shares/disable-secure-transfer.png" alt-text="Screenshot of storage account configuration screen with secure transfer disabled." lightbox="media/storage-files-how-to-mount-nfs-shares/disable-secure-transfer.png":::
177+
178+
# [PowerShell](#tab/azure-powershell)
179+
180+
```azurepowershell
181+
Set-AzStorageAccount -Name "{StorageAccountName}" -ResourceGroupName "{ResourceGroupName}" -EnableHttpsTrafficOnly $False
182+
```
183+
184+
# [Azure CLI](#tab/azure-cli)
185+
186+
```azurecli
187+
az storage account update -g {ResourceGroupName} -n {StorageAccountName} --https-only false
188+
```
189+
---
190+
165191
## Create an NFS share
166192

167193
# [Portal](#tab/azure-portal)

articles/storage/files/storage-files-how-to-mount-nfs-shares.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to mount a Network File System share.
44
author: roygara
55
ms.service: storage
66
ms.topic: how-to
7-
ms.date: 07/01/2021
7+
ms.date: 10/25/2021
88
ms.author: rogarana
99
ms.subservice: files
1010
ms.custom: references_regions
@@ -37,12 +37,12 @@ ms.custom: references_regions
3737

3838
## Disable secure transfer
3939

40-
1. Sign in to the Azure portal and access the storage account containing the NFS share you created.
40+
1. Sign in to the [Azure portal](https://portal.azure.com/) and access the storage account containing the NFS share you created.
4141
1. Select **Configuration**.
4242
1. Select **Disabled** for **Secure transfer required**.
4343
1. Select **Save**.
4444

45-
:::image type="content" source="media/storage-files-how-to-mount-nfs-shares/storage-account-disable-secure-transfer.png" alt-text="Screenshot of storage account configuration screen with secure transfer disabled.":::
45+
:::image type="content" source="media/storage-files-how-to-mount-nfs-shares/disable-secure-transfer.png" alt-text="Screenshot of storage account configuration screen with secure transfer disabled." lightbox="media/storage-files-how-to-mount-nfs-shares/disable-secure-transfer.png":::
4646

4747
## Mount an NFS share
4848

articles/storage/files/storage-troubleshooting-files-nfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Double encryption is not supported for NFS shares yet. Azure provides a layer of
117117

118118
Disable secure transfer required in your storage account's configuration blade.
119119

120-
:::image type="content" source="media/storage-files-how-to-mount-nfs-shares/storage-account-disable-secure-transfer.png" alt-text="Screenshot of storage account configuration blade, disabling secure transfer required.":::
120+
:::image type="content" source="media/storage-files-how-to-mount-nfs-shares/disable-secure-transfer.png" alt-text="Screenshot of storage account configuration blade, disabling secure transfer required.":::
121121

122122
### Cause 3: nfs-common package is not installed
123123
Before running the mount command, install the package by running the distro-specific command from below.

0 commit comments

Comments
 (0)