Problems downloading ESXi to VirtualBox

20 views
Skip to first unread message

Mark Seefried

unread,
May 22, 2019, 8:36:15 AM5/22/19
to Vagrant
All,
I'm trying to create a VMware Virtual Environment and can't seem to get vagrant up to install the ESXi Vm's. Here's a copy of my vagrantfile. I need my ESXi hosts to be 6.7 so i can install NSX-T to overlay. This puts me in the situation of only being able to use VMware's Box files

# Add ESXi Host VM's to VirtualBox

Vagrant.configure("2") do |config|
  config.vm.box = "vmware/esxi"
  config.vm.box_version = "6.7.0-8169922"


 
  config.vm.define :first do |config|
      config.vm.host_name = "host1.unixcloudfusion.in"
      config.vm.network "private_network", ip:"192.168.33.110"
      config.vm.provider :virtualbox do |vb|
          vb.customize ["modifyvm", :id, "--memory", "3072"]
          vb.customize ["modifyvm", :id, "--cpus", "3"]
      end
  end

  config.vm.define :second do |config|
      config.vm.host_name = "host2.unixcloudfusion.in"
      config.vm.network "private_network", ip:"192.168.33.111"
      config.vm.provider :virtualbox do |vb|
          vb.customize ["modifyvm", :id, "--memory", "3072"]
          vb.customize ["modifyvm", :id, "--cpus", "3"]
      end
  end

  config.vm.define :third do |config|
      config.vm.host_name = "host3.unixcloudfusion.in"
      config.vm.network "private_network", ip:"192.168.33.112"
      config.vm.provider :virtualbox do |vb|
          vb.customize ["modifyvm", :id, "--memory", "3072"]
          vb.customize ["modifyvm", :id, "--cpus", "3"]
      end
  end

  config.vm.define :forth do |config|
      config.vm.host_name = "host4.unixcloudfusion.in"
      config.vm.network "private_network", ip:"192.168.33.113"
      config.vm.provider :virtualbox do |vb|
          vb.customize ["modifyvm", :id, "--memory", "3072"]
          vb.customize ["modifyvm", :id, "--cpus", "3"]
      end
  end
end


Dennis Chang

unread,
May 22, 2019, 4:01:03 PM5/22/19
to Vagrant
You'll notice that there's only a single provider for the box you specified,

the provider is vmware_desktop. Therefore, trying to spin up the box using Virtualbox will fail.
You need VMware Desktop in order to run this box.

Mark Seefried

unread,
May 22, 2019, 4:22:47 PM5/22/19
to vagra...@googlegroups.com

Dennis,
Thank you for catching that, it was a late night. I saw that this morning and downloaded VMware Workstation 15. I then modified the vagrantinit file to vmware_workstation. My prob,em is that it's picking up VirtualBox before it sees the vagrantinit file

Looking forward to any assistance you can provide

Mark

--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
 
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/d25527dd-39ad-4e07-90ea-b36b98b597ad%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.
CMD output.png
vagrantfile contents.png
VMware Workstation Pro 15.png

Alvaro Miranda Aguilera

unread,
May 22, 2019, 5:13:08 PM5/22/19
to vagra...@googlegroups.com
vagrant to be able to create vmware vms, need a plugin
when plugin is installed the default provider will be virtualbox


alvaro

Mark Seefried

unread,
May 22, 2019, 5:21:53 PM5/22/19
to Vagrant
alaro,
Thank you for the reply. I had read that today as well. Not sure the cost for licensing it though as its for my personal lab?

Mark

Aaron Kulbe

unread,
May 22, 2019, 5:36:12 PM5/22/19
to vagra...@googlegroups.com
$79

--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
 
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.

Jim McGinness

unread,
May 22, 2019, 8:04:27 PM5/22/19
to Vagrant
Might be worth investigating the plugin at https://github.com/josenk/vagrant-vmware-esxi

I don't know about getting it working in a nested situation, such as the one you are proposing, but I've had some degree of success deploying boxes with it to bare-metal-installed ESXi. No license required.
Reply all
Reply to author
Forward
0 new messages