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/troubleshoot-unexpected-node-reboots-pacemaker-rhel.md
+18-21Lines changed: 18 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,34 +155,31 @@ When there's an outage, like a Platform/Network interruption as discussed in [Sc
155
155
### Resolution for scenario 4
156
156
It's recommended to use `priority-fencing-delay` parameter, so only one VM should be acknowledged by the STONITH device.
157
157
158
-
> [!NOTE]
159
-
> If the Pacmekaer version is less than `2.0.4-6.el8`, then add the parameter `pcmk_delay_max`, but if the version is higher, use `priority-fencing-delay` instead.
160
-
> Check the installed Pacemaker version using the following command:
161
-
> ```bash
162
-
> sudo rpm -qa | grep pacemaker
163
-
> ```
164
158
165
159
1. Set the cluster under maintenance-mode.
166
-
167
-
```bash
168
-
sudo pcs property set maintenance-mode=true
169
-
```
160
+
```bash
161
+
sudo pcs property set maintenance-mode=true
162
+
```
170
163
171
164
2. Edit the cluster configuration.
165
+
```bash
166
+
sudo pcs configure edit
167
+
```
172
168
173
-
```bash
174
-
sudo pcs configure edit
175
-
```
176
-
3. Set the `priority-fencing-delay` parameter in the cluster configuration.
169
+
3. If the Pacemaker version is less than `2.0.4-6.el8`, then add the parameter `pcmk_delay_max`:
170
+
```bash
171
+
sudo pcs property set pcmk_delay_max=15s
172
+
```
177
173
178
-
```bash
179
-
sudo pcs property set priority-fencing-delay=15s
180
-
```
181
-
4. Save the changes and remove the cluster out of maintenance-mode.
174
+
* If the version is higher than `2.0.4-6.el8`, then use the parameter `priority-fencing-delay` instead:
175
+
```bash
176
+
sudo pcs property set priority-fencing-delay=15s
177
+
```
182
178
183
-
```bash
184
-
sudo pcs property set maintenance-mode=false
185
-
```
179
+
4. Save the changes and remove the cluster out of maintenance-mode.
180
+
```bash
181
+
sudo pcs property set maintenance-mode=false
182
+
```
186
183
187
184
For more information refer to [SUSE - Create Azure Fence agent STONITH device](/azure/sap/workloads/high-availability-guide-suse-pacemaker?tabs=msi#use-an-azure-fence-agent-1).
0 commit comments