vagrant up errors out on Windows 10
0x7FFFFFFFFFFFFFFF opened this issue · 1 comments
0x7FFFFFFFFFFFFFFF commented
Describe the issue
I want to create an Oracle 19.3.0 database, so I went to the appropriate directory and executed the command:
PS C:\my_projects\vagrant-projects\OracleDatabase\19.3.0> vagrant up
Bringing machine 'oracle-19c-vagrant' up with 'vmware_desktop' provider...
==> oracle-19c-vagrant: Box 'oraclelinux/7' could not be found. Attempting to find and install...
oracle-19c-vagrant: Box Provider: vmware_desktop, vmware_fusion, vmware_workstation
oracle-19c-vagrant: Box Version: >= 0
==> oracle-19c-vagrant: Loading metadata for box 'https://oracle.github.io/vagrant-projects/boxes/oraclelinux/7.json'
oracle-19c-vagrant: URL: https://oracle.github.io/vagrant-projects/boxes/oraclelinux/7.json
The box you're attempting to add doesn't support the provider
you requested. Please find an alternate box or use an alternate
provider. Double-check your requested provider to verify you didn't
simply misspell it.
If you're adding a box from HashiCorp's Vagrant Cloud, make sure the box is
released.
Name: oraclelinux/7
Address: https://oracle.github.io/vagrant-projects/boxes/oraclelinux/7.json
Requested provider: vmware_desktop vmware_fusion vmware_workstation (amd64)
PS C:\my_projects\vagrant-projects\OracleDatabase\19.3.0>
As you can see, I encountered the some errors.
I'm not sure if it's related, but prior to this, I used Vagrant with VMware on my Windows 10 machine to test some other things. I also have the Vagrant VMware plugin installed.
PS C:\my_projects\vagrant-projects\OracleDatabase\19.3.0> vagrant plugin list
vagrant-cachier (1.2.1, global)
vagrant-env (0.0.3, global)
vagrant-reload (0.0.1, global)
vagrant-vmware-desktop (3.0.3, global)
PS C:\my_projects\vagrant-projects\OracleDatabase\19.3.0>
Additionally, here's my Vagrant version:
PS C:\my_projects\vagrant-projects\OracleDatabase\19.3.0> v -v
Vagrant 2.4.1
PS C:\my_projects\vagrant-projects\OracleDatabase\19.3.0>
Environment (please complete the following information):
- Host OS: Windows 10 Pro
- Vagrant version: 2.4.1
- Vagrant provider:
- For VirtualBox:
- VirtualBox version: 7.1.2r164945
- For VirtualBox:
- Vagrant project: OracleDatabase/19.3.0
Additional information
Add any other information about the issue here (console log, ...).
0x7FFFFFFFFFFFFFFF commented
I think I found the solution. It's because vagrant only supports VirtualBox 7.0. After I uninstalled VirtualBox 7.1 and installed 7.0, vagrant up works as expected.