I continued my exploration here: https://learn.microsoft.com/en-us/answers/questions/277395/storage-spaces-direct-on-stand-alone-windows-serve.html
I'm still open to answers here too though! :)
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Per title: I first tried it with the GUI of Server Manager - File and Storage Services - Volumes - Storage Pools but that threw an error.
So I went to the PS shell, and followed the "gebase.45drives.com kb450193 creating mirror accelerated parity volumes and storage tiers in storage spaces (windows server 2019)" instructions (http://knowledgebase.45drives.com/kb/kb450193-creating-mirror-accelerated-parity-volumes-and-storage-tiers-in-storage-spaces-windows-server-2019/)
The Storage Pool is created with the GUI and that works fine.
Then I go the PS Shell:
PS C:\Windows\system32> New-StorageTier -StoragePoolFriendlyName StoragePool -FriendlyName performance -MediaType SSD
FriendlyName TierClass MediaType ResiliencySettingName FaultDomainRedundancy Size FootprintOnPool StorageEfficiency
------------ --------- --------- --------------------- --------------------- ---- --------------- -----------------
performance Unknown SSD Mirror 1 0 B 0 B
PS C:\Windows\system32> New-StorageTier -StoragePoolFriendlyName StoragePool -ResiliencySettingName Parity -FriendlyName capacity -MediaType HDD
FriendlyName TierClass MediaType ResiliencySettingName FaultDomainRedundancy Size FootprintOnPool StorageEfficiency
------------ --------- --------- --------------------- --------------------- ---- --------------- -----------------
capacity Unknown HDD Parity 1 0 B 0 B
and
PS C:\Windows\system32> New-Volume -FriendlyName VirtualVolumeDisk -FileSystem ReFS -StoragePoolFriendlyName StoragePool -StorageTierFriendlyNames performance, capacity -StorageTierSizes 1.75TB, 3.64TB
New-Volume : Not Supported
Extended information:
The storage pool does not have sufficient eligible resources for the creation of the specified virtual disk.
Recommended Actions:
- Choose a combination of FaultDomainAwareness and NumberOfDataCopies (or PhysicalDiskRedundancy) supported by the storage pool.
- Choose a value for NumberOfColumns that is less than or equal to the number of physical disks in the storage fault domain
selected for the virtual disk.
Activity ID: {7a04ca9f-0496-002b-b7ca-047a9604d701}
At line:1 char:1
+ New-Volume -FriendlyName VirtualVolumeDisk -FileSystem ReFS -StorageP ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [New-Volume], CimException
+ FullyQualifiedErrorId : StorageWMI 1,Microsoft.Management.Infrastructure.CimCmdlets.InvokeCimMethodCommand,New-Volume
What could be going on here? I thought I'd have a very nice setup to make a mirror accelerated parity volume...? No? 2x SSD + 4x HDD should be supported as far as I understand it :(
Please help :)
Thanks
I continued my exploration here: https://learn.microsoft.com/en-us/answers/questions/277395/storage-spaces-direct-on-stand-alone-windows-serve.html
I'm still open to answers here too though! :)