Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vagrant error - A VirtualBox machine with the name already exists

I want to use ubuntu/xenial64 box to create two separate VMs for two separate projects. I defined Vagrantfile in two separate project directories and added the line config.vm.box = "ubuntu/xenial64" to each.

The first box boots successfully. But when I do vagrant up for second project, I get the error

A VirtualBox machine with the name 'ubuntu-xenial-16.04-cloudimg' already exists.

In Vagrant's documentation it's clearly written that

Boxes are globally stored for the current user. Each project uses a box as an initial image to clone from, and never modifies the actual base image. This means that if you have two projects both using the hashicorp/precise64 box we just added, adding files in one guest machine will have no effect on the other machine.

Why then do I get this error?

I have already checked out other similar questions, but I don't understand their solution of deleting existing VMs that appear to have the same name. According to the Vagrant documentation quote above, that shouldn't be necessary. Am I missing something?

like image 507
Jayesh Avatar asked May 11 '16 14:05

Jayesh


1 Answers

You dont need to delete the other VM and indeed you can certainly have many VMs from the same box.

your error might have to do with the VirtualBox Name of the VM created in VirtualBox, If you have override a property to set this name and its the same name on your 2 projects then there will be a collision, see this answer to see the different ways to define the name of the VM

so either leave vagrant define the name of the VM or make sure you have unique VM name in your different project and it will run just fine

UPDATE I check this particular box and it contains the following Vagrantfile

Vagrant.configure("2") do |config|
  config.vm.base_mac = "02101FC67BA9"
  config.ssh.username = "ubuntu"
  config.ssh.password = "c1580f876b655137c6c35b69"
  config.vm.synced_folder '.', '/vagrant', disabled: true

  config.vm.provider "virtualbox" do |vb|
     vb.name = "ubuntu-xenial-16.04-cloudimg"
     vb.customize [ "modifyvm", :id, "--uart1", "0x3F8", "4" ]
     vb.customize [ "modifyvm", :id, "--uartmode1", "file", File.join(Dir.pwd, "%s-console.log" % vb.name) ]
  end
end

so make sure in your Vagrantfile to override this property

  config.vm.provider "virtualbox" do |vb|
     vb.name = "your specific project name"

and change the vb.name to be unique for each of your projects.

like image 164
Frederic Henri Avatar answered Nov 01 '22 05:11

Frederic Henri