Skip to content

Commit 95eefc2

Browse files
authored
Merge pull request #264440 from khdownie/kendownie012824-2
add portal to NFS snapshots
2 parents fc6e631 + c2c5a1c commit 95eefc2

File tree

3 files changed

+51
-5
lines changed

3 files changed

+51
-5
lines changed
25.5 KB
Loading
28.1 KB
Loading

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

Lines changed: 51 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to mount a Network File System (NFS) Azure file share on
44
author: khdownie
55
ms.service: azure-file-storage
66
ms.topic: how-to
7-
ms.date: 01/26/2024
7+
ms.date: 01/28/2024
88
ms.author: kendownie
99
---
1010

@@ -109,7 +109,23 @@ AzCopy isn't currently supported for NFS file shares. To copy data from an NFS A
109109

110110
### Create a snapshot
111111

112-
You can create a snapshot of an NFS Azure file share using Azure PowerShell or Azure CLI. A share can support the creation of up to 200 share snapshots.
112+
You can create a snapshot of an NFS Azure file share using the Azure portal, Azure PowerShell, or Azure CLI. A share can support the creation of up to 200 share snapshots.
113+
114+
# [Azure portal](#tab/portal)
115+
116+
To create a snapshot of an existing file share, sign in to the Azure portal and follow these steps.
117+
118+
1. In the search box at the top of the Azure portal, type and select *storage accounts*.
119+
120+
1. Select the FileStorage storage account that contains the NFS Azure file share that you want to take a snapshot of.
121+
122+
1. Select **Data storage** > **File shares**.
123+
124+
1. Select the file share that you want to snapshot, then select **Operations** > **Snapshots**.
125+
126+
1. Select **+ Add snapshot**. Add an optional comment, and select **OK**.
127+
128+
:::image type="content" source="media/storage-files-how-to-mount-nfs-shares/add-file-share-snapshot.png" alt-text="Screenshot of adding a file share snapshot.":::
113129

114130
# [Azure PowerShell](#tab/powershell)
115131

@@ -127,9 +143,23 @@ az storage share snapshot --name <file-share-name> --account-name <storage-accou
127143
```
128144
---
129145

130-
### List file shares and snapshots
146+
### List file share snapshots
147+
148+
You can list all the snapshots for a file share using the Azure portal, Azure PowerShell, or Azure CLI.
149+
150+
# [Azure portal](#tab/portal)
151+
152+
To list all the snapshots for an existing file share, sign in to the Azure portal and follow these steps.
153+
154+
1. In the search box at the top of the Azure portal, type and select *storage accounts*.
131155

132-
You can list all file shares in a storage account, including the share snapshots, using Azure PowerShell or Azure CLI.
156+
1. Select the FileStorage storage account that contains the NFS Azure file share that you want to list the snapshots of.
157+
158+
1. Select **Data storage** > **File shares**.
159+
160+
1. Select the file share for which you want to list the snapshots.
161+
162+
1. Select **Operations** > **Snapshots**, and any existing snapshots for the file share will be listed.
133163

134164
# [Azure PowerShell](#tab/powershell)
135165

@@ -149,7 +179,23 @@ az storage share list --account-name <storage-account-name> --include-snapshots
149179

150180
### Delete snapshots
151181

152-
Existing share snapshots are never overwritten. They must be deleted explicitly. You can delete share snapshots using Azure PowerShell or Azure CLI.
182+
Existing share snapshots are never overwritten. They must be deleted explicitly. You can delete share snapshots using the Azure portal, Azure PowerShell, or Azure CLI.
183+
184+
# [Azure portal](#tab/portal)
185+
186+
To delete a snapshot of an existing file share, sign in to the Azure portal and follow these steps.
187+
188+
1. In the search box at the top of the Azure portal, type and select *storage accounts*.
189+
190+
1. Select the FileStorage storage account that contains the NFS Azure file share for which you want to delete snapshots.
191+
192+
1. Select **Data storage** > **File shares**.
193+
194+
1. Select the file share for which you want to delete one or more snapshots, then select **Operations** > **Snapshots**. Any existing snapshots for the file share will be listed.
195+
196+
1. Select the snapshot(s) that you want to delete, and then select **Delete**.
197+
198+
:::image type="content" source="media/storage-files-how-to-mount-nfs-shares/delete-file-share-snapshot.png" alt-text="Screenshot of deleting file share snapshots.":::
153199

154200
# [Azure PowerShell](#tab/powershell)
155201

0 commit comments

Comments
 (0)