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/windows-server/backup-and-storage/windows-server-mpio-troubleshooting.md
+71-68Lines changed: 71 additions & 68 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,7 @@ Use this checklist for systematic troubleshooting.
138
138
- If your disk is RAW and can't be fixed, delete and recreate the partition, then restore data from backup.
139
139
- If your clustered disks have stale reservations, use `Clear-ClusterDiskReservation` at a PowerShell command prompt to clear them.
140
140
141
-
####Switch DSM or remove third-party multipath drivers
141
+
### Switch DSM or remove third-party multipath drivers
142
142
143
143
1. If you're using third-party DSMs, use the Programs and Features control panel to uninstall them.
144
144
1. Restart the computer.
@@ -283,97 +283,100 @@ You might observe this behavior after a restart, or after you add or remove disk
283
283
284
284
### Cluster disk resource or LUN disappears after you expand or resize it
285
285
286
-
-After you increase disk or LUN capacity, the volume isn't visible in cluster or disk manager until the role is cycled.
286
+
After you increase disk or LUN capacity, Disk Management or Failover Cluster Manager don't display the related volume. The volume reappears if you take the cluster role offline and then online again.
287
287
288
+
To fix this issue, follow these steps:
288
289
290
+
1. Take the affected cluster role offline, then bring it online again (or move role to another node).
291
+
1. To run maintenance prcesses that rescan and extend the file system run the following commands at a Windows command prompt on the node that owns the role:
289
292
290
-
#### Resolution
291
-
292
-
1. Bring affected cluster role offline, then online (or move role to another node).
293
-
1. Use DiskPart on the owner node to rescan and extend filesystem during maintenance:
294
-
295
-
```console
296
-
diskpart
297
-
rescan
298
-
list vol
299
-
select vol x
300
-
extend filesystem
301
-
exit
302
-
```
293
+
```console
294
+
diskpart
295
+
rescan
296
+
list vol
297
+
select vol x
298
+
extend filesystem
299
+
exit
300
+
```
303
301
304
-
### MPIO path not detected without server restart
302
+
### Server has to restart to detect new MPIO paths
305
303
306
-
#### Symptoms
304
+
After you change cabling, zoning, or storage configuration, the computer that manages storage doesn't detect new paths until it restarts.
307
305
308
-
- After cabling, zoning, or storage configuration change, new paths aren't detected until server is restarted.
306
+
To fix this issue, follow these steps:
309
307
310
-
#### Resolution
308
+
1. At a PowerShell command prompt on the affected computer, run the followng commands:
311
309
312
-
1. Run:
310
+
```powershell
311
+
Update-HostStorageCache
312
+
mpclaim -n -d
313
+
```
313
314
314
-
```console
315
-
Update-HostStorageCache
316
-
mpclaim -n -d
317
-
```
315
+
> [!IMPORTANT]
316
+
> If these commands don't work, restart the computer.
318
317
319
-
1. If the command is unsuccessful, a restart is required.
320
318
1. Make sure that MPIO, DSM, and Storport are up to date.
321
319
322
-
### Persistent issues
323
-
324
-
325
-
#### Symptoms
326
-
327
-
- Persistent failover problems
328
-
- Event 153 or 129, despite all fixes
329
-
- Documented "won't fix" scenarios in the OS version
330
-
331
-
#### Resolution
332
-
333
-
1. Verify with Microsoft Support or vendor documentation all bug and ICM IDs.
334
-
1. Implement documented workarounds.
335
-
1. Upgrade to latest supported Windows Server build if a fix is available (for example, from 2019 to 2022 for known MPIO bugs).
| High IO latency, app slow, Event ID 833 | Driver/antivirus | Exclude storage from AV, update drivers, Perfmon, use 64K clusters |
329
+
| Disk GUID duplicate, Event ID 158 | No MPIO/clone VHDs | Enable MPIO, Set-VHD -ResetDiskIdentifier |
330
+
| Cluster disk disappears after expansion | Driver/event miss | Cycle role offline and online, rescan, extend with DiskPart |
331
+
| Paths not detected until restart | Storport configuration issue |`Update-HostStorageCache`, restart |
332
+
| "Requested resource in use," can't bring disk online | Metadata or disk issue | Use `chkdsk`, check logs, engage storage team |
351
333
352
334
## Data collection
353
335
354
-
When issues persist after basic troubleshooting, use these steps to gather diagnostic data:
336
+
If these procedures don't resolve your issue, contact Microsoft Support. Use the following tools to gather diagnostic data to append to your support request:
337
+
338
+
-**Windows Troubleshooting Scripts (TSS)**: The TSS scripts automatically collect useful data. For more information and instructions, see the following articles:
339
+
-[Collect data to analyze and troubleshoot clustering and high availability scenarios](../../windows-client/windows-tss/collect-data-analyze-troubleshoot-windows-clustering-scenarios.md?context=%2Ftroubleshoot%2Fwindows-server%2Fcontext%2Fcontext)
340
+
-[Collect data to analyze and troubleshoot Hyper-V scenarios](../../windows-client/windows-tss/collect-data-analyze-troubleshoot-hyperv-scenarios?context=%2Ftroubleshoot%2Fwindows-server%2Fcontext%2Fcontext)
341
+
-**Process Monitor (Procmon):** For in-depth file, registry, or process analysis, run a command that resembles the following example at the Windows command prompt:
0 commit comments