我刚想用最新的 debian,但是现在好像不行了:
$ cat Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "debian/stretch64"
end
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'debian/stretch64' could not be found. Attempting to find and install...
default: Box Provider: virtualbox
default: Box Version: >= 0
The box 'debian/stretch64' 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/debian/stretch64"]
Error: The requested URL returned error: 404 Not Found
这个报错提醒我用vagrant login
先登录,但是https://atlas.hashicorp.com
根本没有注册账号的入口也就登录不了,成了个死循环,我是不是哪里弄错了?我要怎么做?
1
NewJoy7 2018-02-13 22:49:15 +08:00 1
更新到最新的 vagrant 吧,前一段时间折腾过.
或者 |
2
NewJoy7 2018-02-13 22:49:47 +08:00
export VAGRANT_SERVER_URL='https://vagrantcloud.com'
|