A vagabond box cannot be found or is not available in the remote directory - incompatible curl version

I just downloaded Vagrant and made the settings, and also installed a virtual box. I just can't start my project (wandering up). I have a stray file and so on. What can I do?

$ vagrant up Bringing machine 'default' up with 'virtualbox' provider... ==> default: Box 'scotch/box' could not be found. Attempting to find and install ... default: Box Provider: virtualbox default: Box Version: >= 0 The box 'scotch/box' could not be found or could not be accessed in the remote catalog. If this is a private box on HashiCorp Atlas, please verify you're logged in via `vagrant login`. Also, please double-check the name. The expanded URL and error message are shown below: URL: ["https://atlas.hashicorp.com/scotch/box"] 
+85
vagrant virtualbox macos
Nov 07 '16 at 20:24
source share
5 answers

It seems that issue is with vagrant 1.8.7, and the built-in version of curl vs mac os binary (sent by default to mac os Sierra and others) - delete the built-in file

 sudo rm /opt/vagrant/embedded/bin/curl 

Note: you also need to remove the built-in curl when adding a firewall (either remotely or locally), so if you get the same error when starting vagrant box add .... just remove the curl from the tramp and it will work

+214
Nov 07 '16 at 20:40
source share

Just want to update this post. I encountered this error launched by macOS Sierra and a new installation of Vagrant 1.8.7 and noticed that Vagrant has just been updated. Starting with Vagrant 1.9.0, this error seems to be fixed.

+1
Dec 01 '16 at 19:01
source share

Had a similar problem with Sierra (with additional brew settings that could have an impact).

Above sudo rm / opt / vagrant / embedded / bin / curl failed: SSLRead () return error -36.

Tried the sentence http://slick.pl/kb/software/vagrant-fix-for-error-60-ssl-read/

Anyway:

 cd ~ cd .vagrant.d/tmp/ rm -rf ~/.vagrant.d/tmp/ vagrant box add --insecure laravel/homestead 

Installed successfully.

0
Nov 22 '16 at 11:02
source share

I just experienced this error. In my case, I installed vagrant via apt-get, which installed 1.7.x ..

I uninstalled 1.7.x and installed 2.0.3 directly https://www.vagrantup.com/downloads.html

0
Apr 03 '18 at 19:08
source share

I had the same issue on MacOS Mojave and Vagrant version 1.9.3 when I tried to use the box: centos / 7.

 $ vagrant up Bringing machine 'default' up with 'virtualbox' provider... ==> default: Box 'centos/7' could not be found. Attempting to find and install... default: Box Provider: virtualbox default: Box Version: >= 0 The box 'centos/7' could not be found or could not be accessed in the remote catalog. If this is a private box on HashiCorp Atlas, please verify you're logged in via 'vagrant login'. Also, please double-check the name. The expanded URL and error message are shown below: URL: ["https://atlas.hashicorp.com/centos/7"] Error: The requested URL returned error: 404 Not Found 

I upgraded to Vagrant 2.2.5 and it worked as expected:

 Bringing machine 'default' up with 'virtualbox' provider... ==> default: Box 'centos/7' could not be found. Attempting to find and install... default: Box Provider: virtualbox default: Box Version: >= 0 ==> default: Loading metadata for box 'centos/7' default: URL: https://vagrantcloud.com/centos/7 ==> default: Adding box 'centos/7' (v1902.01) for provider: virtualbox default: Downloading: https://vagrantcloud.com/centos/boxes/7/versions/1902.01/providers/virtualbox.box default: Download redirected to host: cloud.centos.org ==> default: Successfully added box 'centos/7' (v1902.01) for 'virtualbox'! 
0
Jun 30 '19 at 21:29
source share



All Articles