VMware Cloud Community
gboskin
Enthusiast
Enthusiast

vmware time sync

I have a client with about 100 vms and need to change most of the vm not to time sync from the esx host . This is due to the fact . Just wondering what the best way to do this is?

0 Kudos
2 Replies
dquintana
Virtuoso
Virtuoso

Hello gboskin,

I like recommend to use a physical set of servers working as a time server, and all the infrastructure work with this servers, in this case you need to disable the time synchronization in the guest vms and set to use the physical time servers.

Other option is synchronize the ESX with this physical time servers or a mixed mode.

Here you have a very interesting PDF about this practices.

http://www.vmware.com/pdf/vmware_timekeeping.pdf



Por favor no olvides calificar las respuestas que te resultaron de ayuda o fueron correctas.

Please, don't forget the awarding points for "helpful" and/or "correct" answers.

Regards/Saludos

________________________________________

Ing. Diego Quintana

VCP 410- VCP 310 - VAC - VTSP

My Linkedin Profile

Join to Virtualizacion en Español group in Likedin

!http://feeds.feedburner.com/WetcomGroup.1.gif!

Ing. Diego Quintana - VMware Communities Moderator - Co Founder & CEO at Wetcom Group - vEXPERT From 2010 to 2020- VCP, VSP, VTSP, VAC - Twitter: @daquintana - Blog: http://www.wetcom.com-blog & http://www.diegoquintana.net - Enjoy the vmware communities !!!

0 Kudos
mittim12
Immortal
Immortal

Here is code taken from the powershell forum that shows how to enable time sync with host. Maybe you can test the code with the $FALSE to see if it disables the time sync.

Get-VM | % { Get-View $_.ID} | `

% {

$spec = new-object VMware.Vim.VirtualMachineConfigSpec

$spec.tools = New-Object VMware.Vim.ToolsConfigInfo

$spec.tools.syncTimeWithHost = $true

Get-View($_.ReconfigVM_Task($spec))

}

http://communities.vmware.com/message/1005498






If you found this or any other post helpful please consider the use of the Helpful/Correct buttons to award points

0 Kudos