Contrôler sur un cluster la Path Policy :
Get-VMHost -Location <Cluster>|Get-ScsiLun -LunType “disk”|where {$_.MultipathPolicy -ne “RoundRobin”}
Appliquer le Round-Robin aux ESX du cluster :
Get-VMHost -Location <Cluster>|Get-ScsiLun -LunType “disk”|where {$_.MultipathPolicy -ne “RoundRobin”}|Set-ScsiLun -MultipathPolicy RoundRobin
Update 12/02/2015
Sur ESX IBM le CanonicalName commence bien par “naa.50*” mais sur HP par “naa.60*” (Dans notre INFRA)
Si les Datastores sont sur baie SAN, il peut être intéressant de ne cibler que ceux ci :
get-cluster -Name “Mon_CLuster” | Get-VMHost | Get-ScsiLun -CanonicalName “naa.50*” | ? {$_.MultipathPolicy -eq “Fixed”} |Set-ScsiLun -MultipathPolicy “RoundRobin”
Leave A Comment