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
Copy file name to clipboardExpand all lines: br/backup-and-restore-storages.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,7 @@ You can configure the account used to access GCS by specifying the access key. I
211
211
212
212
- **System-assigned managed identity**:
213
213
214
-
When using a system-assigned managed identity, there is no need to configure any Azure-related environment variables. You can simply run the BR backup command.
214
+
When using a system-assigned managed identity, there is no need to configure any Azure-related environment variables. You can run the BR backup command directly.
215
215
216
216
```shell
217
217
tiup br backup full -u "${PD_IP}:2379" \
@@ -220,23 +220,23 @@ You can configure the account used to access GCS by specifying the access key. I
220
220
221
221
>**Note:**
222
222
>
223
-
> Ensure that the `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, or`AZURE_CLIENT_SECRET` environment variables do**not**existin the running environment. Otherwise, the Azure SDK might prioritize other authentication methods, preventing the managed identity from taking effect.
223
+
> Ensure that the `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, and`AZURE_CLIENT_SECRET` environment variables are**not**setin the runtime environment. Otherwise, the Azure SDK might prioritize other authentication methods, preventing the managed identity from taking effect.
224
224
225
225
- **User-assigned managed identity**:
226
226
227
-
When using a user-assigned managed identity, you need to configure the `AZURE_CLIENT_ID` environment variable in the running environment of TiKV and BR, set its value to the client ID of the managed identity, and then run the BR backup command. The detailed steps are as follows:
227
+
When using a user-assigned managed identity, you need to configure the `AZURE_CLIENT_ID` environment variable in the runtime environment of TiKV and BR, set its value to the client ID of the managed identity, and then run the BR backup command. The detailed steps are as follows:
228
228
229
229
1. Configure the client ID for TiKV when starting with TiUP:
230
230
231
231
The following steps use the TiKV port `24000` and the systemd service name `tikv-24000` as an example:
232
232
233
-
1. Open the service configuration editor by running the following command:
233
+
1. Open the systemd service editor by running the following command:
234
234
235
235
```shell
236
236
systemctl edit tikv-24000
237
237
```
238
238
239
-
2. Configure the `AZURE_CLIENT_ID` environment variable using your client ID:
239
+
2. Set the `AZURE_CLIENT_ID` environment variable to your managed identity client ID:
0 commit comments