This guide provides how to urn multiple machines with the fix of itmezone issues in vagrant Pre-req : Install latest vagrant Install latest Oracle vmware. before starting vagrant up or vagrant up pg1/2/3 Install the below on vagrant windows machine : vagrant install plugin vagrant-timezone If windows 10 thrown some error then it might have caused last patch installation. Reboot the machine and try again. ********************************************************************************************************* The below provides clean 3 node vagrant instllation with timezone fix # -*- mode: ruby -*- # vi: set ft=ruby : $script = <<SCRIPT echo I am provisioning... date > /etc/vagrant_provisioned_at SCRIPT Vagrant.configure("2") do |config| if Vagrant.has_plugin?("vagrant-timezone") config.timezone.value = "America/New_York" end # ... other stuff config.vm.define "...