我正在运行 2 个 vm(Windows 2022 数据中心),带有 1 个 OS 驱动器和两个作为 RAW 磁盘的驱动器。我在没有存储的情况下成功创建了集群。当我尝试启用 StorageSpaceDirect Enable-ClusterStorageSpacesDirect –CimSession 时,我收到以下错误:
此版本的存储空间直通和配置为站点的容错域不支持延伸或多站点。
以前,我运行 Windows 2019 数据中心时没有任何问题。
我正在运行 2 个 vm(Windows 2022 数据中心),带有 1 个 OS 驱动器和两个作为 RAW 磁盘的驱动器。我在没有存储的情况下成功创建了集群。当我尝试启用 StorageSpaceDirect Enable-ClusterStorageSpacesDirect –CimSession 时,我收到以下错误:
此版本的存储空间直通和配置为站点的容错域不支持延伸或多站点。
以前,我运行 Windows 2019 数据中心时没有任何问题。
您只需要创建一个站点。一个包含所有节点的站点就足够了。
#Create Site Fault Domains
New-ClusterFaultDomain –Name Seattle –Type Site –Description “Primary” –Location “Seattle DC”
New-ClusterFaultDomain –Name Denver –Type Site –Description “Secondary” –Location “Denver DC”
#Set Fault Domain membership
Set-ClusterFaultDomain –Name Node1 –Parent Seattle
Set-ClusterFaultDomain –Name Node2 –Parent Seattle
Set-ClusterFaultDomain –Name Node3 –Parent Denver
Set-ClusterFaultDomain –Name Node4 –Parent Denver