如何检查 Vcenter 上的 NTP 设置
How to check NTP Setting on Vcenter
我想检查 Vcenter 上的 NTP 设置是否设置为 "running"
我正在使用以下 cmdlet,但它会返回 NTP 服务器的 IP 地址。
Get-VMHostNtpServer -VMHost abc.com
如何检查状态是否设置为"running"?
Get-VMHostService
cmdlet returns HostService
个实例,其中包含 Running
属性。
来自 older Get-VMHostService
documentation 的示例显示了随 Running
属性:
一起返回的服务列表(包括 ntpd
)
C:\PS>Get-VMHostService -Refresh
Key Label Policy Running Required
--- ----- ------ ------- --------
ntpd NTP Daemon automatic False False
sshd SSH Server automatic True False
vmware-vpxa VMware VirtualCenter Agent automatic True False
我想检查 Vcenter 上的 NTP 设置是否设置为 "running" 我正在使用以下 cmdlet,但它会返回 NTP 服务器的 IP 地址。
Get-VMHostNtpServer -VMHost abc.com
如何检查状态是否设置为"running"?
Get-VMHostService
cmdlet returns HostService
个实例,其中包含 Running
属性。
来自 older Get-VMHostService
documentation 的示例显示了随 Running
属性:
ntpd
)
C:\PS>Get-VMHostService -Refresh
Key Label Policy Running Required
--- ----- ------ ------- --------
ntpd NTP Daemon automatic False False
sshd SSH Server automatic True False
vmware-vpxa VMware VirtualCenter Agent automatic True False