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: support/azure/virtual-machines/linux/repair-linux-vm-using-ALAR.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
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Repair a Linux VM automatically with the help of ALAR
3
-
description: This article describes how to automatically repair a nonbootable VM with the Azure Linux Auto Repair (ALAR) scripts.
3
+
description: This article describes how to automatically repair a non-bootable VM with the Azure Linux Auto Repair (ALAR) scripts.
4
4
services: virtual-machines-linux
5
5
documentationcenter: ''
6
6
author: pagienge
@@ -51,7 +51,7 @@ The ALAR scripts use the [az vm repair](/cli/azure/vm/repair) extension, `run` c
51
51
az vm repair create --verbose --resource-group <RG-NAME> --name <VM-NAME>
52
52
```
53
53
54
-
- There are currently 3 parameters which will prompt for values if they are not given on the command line. Add these parameters and values to the command for a non-interactive execution
54
+
- There are currently three parameters that will prompt for values if they aren't given on the command line. Add these parameters and values to the command for a non-interactive execution
55
55
- `--repair-username <RESCUE-USERNAME>`
56
56
- `--repair-password <RESCUE-PASS>`
57
57
- `--associate-public-ip`
@@ -63,7 +63,7 @@ The ALAR scripts use the [az vm repair](/cli/azure/vm/repair) extension, `run` c
63
63
az vm repair run --verbose --resource-group <RG-NAME> --name <VM-NAME> --run-id linux-alar2 --parameters <action1,action2,...> --run-on-repair
64
64
```
65
65
66
-
valid action names will be given below.
66
+
valid action names are given below.
67
67
68
68
3. Swap the copy of the OS disk back to the original VM and delete the temporary resources:
69
69
@@ -72,15 +72,15 @@ The ALAR scripts use the [az vm repair](/cli/azure/vm/repair) extension, `run` c
72
72
```
73
73
74
74
> [!NOTE]
75
-
> The original and new disks won't be deleted.
75
+
> The original and new disks aren't deleted during the `restore` phase.
76
76
77
77
In all of the example commands these are the parameters shown:
78
78
79
79
- `RG-NAME`: The name of the resource group containing the broken VM.
80
80
- `VM-NAME`: The name of the broken VM.
81
81
- `RESCUE-UID`: The user created on the repair VM for login. It's the equivalent of the user created on a new VM in the Azure portal.
82
82
- `RESCUE-PASS`: The password for `RESCUE-UID`, enclosed in single quotes. For example: `'password!234'`.
83
-
- `action1,action2`, etc.: One or more of the defined actions available to apply to the broken VM. See the complete list of actions below, and in the [ALAR github ReadMe](https://github.com/Azure/ALAR). You can pass one or more actions which will be run consecutively. For multiple operations, delineate them using commas without spaces, such as `fstab,sudo`.
83
+
- `action1,action2`, etc.: One or more of the defined actions available to apply to the broken VM. See the complete list of actions below, and in the [ALAR GitHub ReadMe](https://github.com/Azure/ALAR). You can pass one or more actions that are run consecutively. For multiple operations, delineate them using commas without spaces, such as `fstab,sudo`.
0 commit comments