macos - cajas - No se pudo encontrar el vagabundo o no se pudo acceder a él en el catálogo remoto-versión de rizo incompatible
vagrant marketplace (5)
Acabo de descargar Vagrant e hice la configuración, así como instalar virtual box. Simplemente no puedo comenzar mi proyecto (vagabundo). Tengo un archivo vagabundo y así sucesivamente. ¿Que puedo hacer?
$ 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''s 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"]
Acabo de experimentar este error. En mi caso instalé vagabundo a través de apt-get que instaló 1.7.x ..
Eliminé 1.7.xy instalé 2.0.3 directamente https://www.vagrantup.com/downloads.html
Parece que hay un issue con vagrant 1.8.7 y la versión de curl incrustada frente al binario mac os (incluido de forma predeterminada en mac os Sierra y otros): elimine el incrustado
sudo rm /opt/vagrant/embedded/bin/curl
Nota: también debe eliminar el
curl
incrustado cuando agrega un cuadro vagabundo (de forma remota o local), de modo que si obtiene el mismo error al ejecutar el
vagrant box add ....
simplemente elimine el rizo del vagabundo y funcionará
Solo quería actualizar esta publicación. Me encontré con este error al ejecutar macOS Sierra y una nueva instalación de Vagrant 1.8.7 y noté que Vagrant acababa de actualizarse. A partir de Vagrant 1.9.0, este error parece haberse solucionado.
Tuve este mismo problema en MacOS Mojave y Vagrant versión 1.9.3, cuando intentaba usar la caja: 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''s 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
Actualicé a Vagrant 2.2.5 y funcionó como se esperaba:
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''!
Tuve un problema similar con Sierra (con instalaciones de preparación adicionales, lo que podría tener un impacto).
Por encima de sudo rm / opt / vagrant / embedded / bin / curl no funcionó todavía: SSLRead () devuelve error -36.
Sugerencia probada de http://slick.pl/kb/software/vagrant-fix-for-error-60-ssl-read/
Cualquier caso:
cd ~
cd .vagrant.d/tmp/
rm -rf ~/.vagrant.d/tmp/
vagrant box add --insecure laravel/homestead
Instalado correctamente.