filmov
tv
Changing Health Status for the physical disk and Operational Status in Storage Spaces Direct
Показать описание
In a Windows Server clusters, you might see the HealthStatus for one or more physical disks as Healthy, while the OperationalStatus is Removing from Pool, OK.
The Removing from Pool status is an intent set when Remove-PhysicalDisk is called but stored in Health to maintain state and allow recovery if the remove operation fails. You can manually change the OperationalStatus to Healthy with one of these methods:
1. Remove the physical disk from the pool, and then add it back.
Method 2 :
2. Cd to the location of the file
4. Get the unique ID of the physical disk: Get-PhysicalDisk -SerialNumber "######" | fl uniqueid
5. Clear-PhysicalDiskHealthData -Intent -Policy -UniqueId "####"
6. Yes and done.
The Removing from Pool status is an intent set when Remove-PhysicalDisk is called but stored in Health to maintain state and allow recovery if the remove operation fails. You can manually change the OperationalStatus to Healthy with one of these methods:
1. Remove the physical disk from the pool, and then add it back.
Method 2 :
2. Cd to the location of the file
4. Get the unique ID of the physical disk: Get-PhysicalDisk -SerialNumber "######" | fl uniqueid
5. Clear-PhysicalDiskHealthData -Intent -Policy -UniqueId "####"
6. Yes and done.