I am trying to provide a pair of master-master MySQL and they can only be configured correctly if both of them.
Vagrant.configure("2") do |config|
web.vm.box = "centos/7"
config.vm.define "primary" do |primary|
.......
end
config.vm.define "secondary" do |secondary|
.......
end
end
I have done this several times, and Vagrant starts the second vm after the first one got up.
Is there a way to get Vagrant to run two virtual machines at the same time?
Ken j source
share