LoginSignup
0
0

More than 5 years have passed since last update.

データコアサーバーVMの感度を高にする。

Posted at

https://qiita.com/tsurun/items/14c9f43f10b731e44462
の続きです。

(環境依存かもしれないけど)データコアサーバーに高感度設定がちゃんと入ってなかった。
参考URL https://communities.vmware.com/thread/474604

#vCenter Serverにはあらかじめ接続してある前提
$spec = New-Object VMware.Vim.VirtualMachineConfigSpec
$spec.latencySensitivity = New-Object VMware.Vim.LatencySensitivity
$spec.LatencySensitivity.Level = [VMware.Vim.LatencySensitivitySensitivityLevel]::high
$vm = Get-VM -Name HVSAN-*|%{$_.ExtensionData.ReconfigVM($spec)}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0