You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
97
102
103
+
# [Windows](#tab/windows)
104
+
98
105
#### For Windows clients (SMB):
99
106
100
107
Be sure to replace `<storage-account-name>`, `<share-name>`, and `<storage-account-key>` with your actual values.
@@ -103,36 +110,45 @@ Be sure to replace `<storage-account-name>`, `<share-name>`, and `<storage-accou
103
110
net use Z: \\<storage-account-name>.file.core.windows.net\<share-name> /u:AZURE\<storage-account-name> <storage-account-key>
104
111
```
105
112
113
+
# [Linux](#tab/linux)
114
+
106
115
#### For Linux clients (NFS):
107
116
108
117
Be sure to replace `<storage-account-name>`, `<share-name>`, and `<mount-point>` with your actual values.
109
118
110
119
```bash
111
120
sudo mount -t nfs <storage-account-name>.file.core.windows.net:/<storage-account-name>/<share-name><mount-point> -o vers=4.1,sec=sys
112
121
```
122
+
---
113
123
114
124
### Step 4: Perform data migration
115
125
126
+
Once you've mounted the Azure file share, you can perform the data migration.
127
+
128
+
# [Windows](#tab/windows)
129
+
116
130
#### For Windows workloads using Robocopy:
117
131
118
-
1.Open a command prompt or PowerShell window with administrator privileges.
132
+
Open a command prompt or PowerShell window with administrator privileges, and run the following command:
0 commit comments