Skip to main content
  • Place orders quickly and easily
  • View orders and track your shipping status
  • Create and access a list of your products

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

Summary: この記事では、『デル・テクノロジーズによるMicrosoft HCIソリューション』ガイドに記載されているMicrosoft Azureハイパーコンバージド インフラストラクチャ(HCI) S2Dクラスターを導入するための情報と手順について説明します。

This article applies to   This article does not apply to 

Instructions

次のスクリーンショットは、スイッチ ネットワーク上の2ノードHCIクラスターの環境を示しています。以下のPowerShell情報は、この構成に適用されましたが、さらに多くのノードがあり、スイッチレス ネットワーク トポロジーを持つクラスターの変更に役立ちます。
Windows Active Directoryスイッチ ネットワーク環境におけるMicrosoft Azure Stack HCI 2ノード クラスターの図。
 
スクリプトの例とインストール プロセスについては、『 Microsoft HCI Solutions from Dell Technologies Deployment Guide』の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
ドライバー バージョンのリストを取得します。
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*") }
クラスター ノード名を割り当てます。
Rename-Computer -NewName CN01 -Restart
クラスター テスト
Test-Cluster -Node CN01, CN02 –Include 'Storage Spaces Direct', 'Inventory', 'Network', 'System Configuration'
ストレージ プール ディスクのステータスの検索
Get-PhysicalDisk
新しいS2Dクラスターの作成
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
記憶域スペース ダイレクトの有効化:
Enable-ClusterS2D -Verbose
以前のコマンドの結果のキャプチャ
Get-ClusterS2D
Get-StoragePool
Get-StorageSubSystem -FriendlyName *Cluster* | Get-StorageHealthReport
ライブ マイグレーションのホスト管理ネットワークの優先度を低く設定します。
$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
メモリー ダンプを確実にキャプチャーできるようにするためのページ ファイル設定:
$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)署名を無効にする。通常のWindows Serverインストールではデフォルトで無効になっています。

Set-SmbServerConfiguration -RequireSecuritySignature $FALSE -force
スペース ポートのタイムアウト設定の変更:
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\spaceport \Parameters -Name HwTimeout -Value 0x00002710 -Verbose Restart-Computer -Force

Affected Products

Hyper-converged Systems, Microsoft Windows Server 2016, Microsoft Windows Server 2019, Microsoft Windows Server 2022

Products

Microsoft Windows Server 2016, Microsoft Windows Server 2019, Microsoft Windows Server 2022
Article Properties
Article Number: 000201913
Article Type: How To
Last Modified: 15 Aug 2024
Version:  7
Find answers to your questions from other Dell users
Support Services
Check if your device is covered by Support Services.