Skip to main content
  • Place orders quickly and easily
  • View orders and track your shipping status
  • Create and access a list of your products
  • Manage your Dell EMC sites, products, and product-level contacts using Company Administration.

Dell Microsoft Azure Stack HCIクラスターの導入

Summary: 詳細については、『 Dell TechnologiesのMicrosoft HCIソリューション導入ガイド 』に記載されているとおりに、Microsoft Azure HCI S2Dクラスターを導入する手順について説明します。

This article may have been automatically translated. If you have any feedback regarding its quality, please let us know using the form at the bottom of this page.

Article Content


Instructions

次のスクリーンショットは、スイッチ ネットワーク上の2ノードHCIクラスターの環境を示しています。  以下のPowerShell情報は、この構成に適用されましたが、さらに多くのノードがあり、スイッチレス ネットワーク トポロジーを持つクラスターの変更に役立ちます。


Windows Active Directoryスイッチ ネットワーク環境におけるMicrosoft Azure Stack HCI 2ノード クラスターの図。
 
以下のスクリプトの例とインストール プロセスは、ダウンロード可能な.PDFバージョン「Dell TechnologiesのMicrosoft HCIソリューション」導入ガイドの12~21ページにあります。
スクリプトは、クラスター ノードにオペレーティング システムがインストールされ、Active Directoryドメインに追加され、将来のクラスター ネットワークが導入された後にステップを実行します。


構成項目:
  • Windows機能のインストール:Hyper-V、フェールオーバー クラスタリング、データ センター ブリッジング、BitLocker、FS-FileServer、RSATクラスタリング-PowerShell、FS-データ重複排除
  • ドライバーのアップデート チェック:  サポート マトリックスの確認
  • クラスター ノード名の変更
  • クラスター テスト、検証
  • S2Dクラスターの作成
  • 記憶域スペース ダイレクトの有効化
  • ライブ移行のホスト「管理」ネットワーク優先度の設定
  • ページ ファイルの設定:メモリー ダンプ領域の許可
  • クラスター監視の設定
  • スペース ポートのタイムアウト設定
次のスクリプトの例は、HCIクラスターが導入されている環境に合わせて調整する必要があります。  インストール環境のパラメーターを満たすように、サーバー名、クラスター名、クラスター共有名、IP情報を変更する必要があります。
以下のスクリプト テキストを目的の導入スクリプトにコピーする場合は、PowerShellテキストを折り返さないでください。

#Windows機能のインストール:
Install-WindowsFeature -Name Hyper-V, Failover-Clustering, Data-Center-Bridging, BitLocker, FS-FileServer, RSAT-Clustering-PowerShell, FS-Data-Deduplication -IncludeAllSubFeature
-IncludeManagementTools -verbose



ドライババージョンの#Retrieveリスト:
Get-PnpDevice | Select-Object Name, @{l='DriverVersion';e={(Get-PnpDeviceProperty -InstanceId $_.InstanceId -KeyName 'DEVPKEY_Device_DriverVersion').Data}} -Unique |
Where-Object {($_.Name -like "*HBA*") -or ($_.Name -like "*mellanox*") -or ($_.Name -like "*Qlogic*") -or ($_.Name -like "*X710*") -or ($_.Name -like "*intel*") -or ($_.Name -like "*Broadcom*") -or ($_.Name -like "*marvell*") }



#Assignクラスター ノード名:
Rename-Computer -NewName CN01 -Restart


#Clusterテスト
Test-Cluster -Node CN01, CN02 –Include 'Storage Spaces Direct', 'Inventory', 'Network', 'System Configuration'



ストレージ プール ディスクの#Findステータス
Get-PhysicalDisk



新しいS2Dクラスターを#Creatingします。
New-Cluster -Name S2DSystem -Node CN01, CN02 -StaticAddress 192.168.10.33 -NoStorage -IgnoreNetwork 172.16.103.0/24, 172.16.104.0/24 -Verbose


#Enabling Storage Spaces Direct:
Enable-ClusterS2D -Verbose



前のコマンドの##Capturing結果
Get-ClusterS2D
Get-StoragePool
Get-StorageSubSystem -FriendlyName *Cluster* | Get-StorageHealthReport



ライブ移行の優先度が低いホスト管理ネットワークを#Configureします。
$clusterResourceType = Get-ClusterResourceType -Name 'Virtual Machine'
$hostNetworkID = Get-ClusterNetwork | Where-Object { $_.Address -eq ‘192.168.10.0’ } |
Select-Object -ExpandProperty ID
$otherNetworkID = (Get-ClusterNetwork).Where({$_.ID -ne $hostnetworkID}).ID
$newMigrationOrder = ($otherNetworkID + $hostNetworkID) -join ';'
Set-ClusterParameter -InputObject $clusterResourceType -Name MigrationNetworkOrder -Value
$newMigrationOrder
Set-VmHost -VirtualMachine MigrationPerformanceOption SMB



#Pageファイル設定を使用して、メモリー ダンプをキャプチャできるようにします。
$blockCacheMB = (Get-Cluster).BlockCacheSize

$blockCacheMB = (Get-Cluster).BlockCacheSize
$pageFilePath = "C:\pagefile.sys"
$initialSize = [Math]::Round(51200 + $blockCacheMB)
$maximumSize = [Math]::Round(51200 + $blockCacheMB)
$system = Get-WmiObject -Class Win32_ComputerSystem -EnableAllPrivileges
if ($system.AutomaticManagedPagefile) {
$system.AutomaticManagedPagefile = $false
$system.Put()
}
$currentPageFile = Get-WmiObject -Class Win32_PageFileSetting
if ($currentPageFile.Name -eq $pageFilePath)
{
$currentPageFile.InitialSize = $InitialSize
$currentPageFile.MaximumSize = $MaximumSize
$currentPageFile.Put()
}else{
$currentPageFile.Delete()
Set-WmiInstance -Class Win32_PageFileSetting -Arguments @{Name=$pageFilePath;
InitialSize = $initialSize; MaximumSize = $maximumSize}
}
#Configure cluster witness. Active Directory Cluster Name Object must be given write access on file #share before running this step:
Set-ClusterQuorum -NodeAndFileShareMajority \\VDC01\ClusterQuorum


SMB署名の#Disable。通常のWindows Serverインストールではデフォルトで無効
Set-SmbServerConfiguration -RequireSecuritySignature $FALSE -force



#Spacesポート タイムアウト構成の変更:
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\spaceport \Parameters -Name HwTimeout -Value 0x00002710 -Verbose Restart-Computer -Force


Article Properties


Affected Product

Hyper-converged Systems, Microsoft Windows Server 2022

Product

Microsoft Windows Server 2016, Microsoft Windows Server 2019, Microsoft Windows Server 2022

Last Published Date

12 May 2023

Version

6

Article Type

How To