vagrant up提示“Couldn‘t open file /path/to/base“的错误解决方法
【摘要】
在vagrant使用命令vagrant up启动虚拟机时
出错:
C:\Vagrant>vagrant upBringing machine 'default' up with 'virtualbox' provider...==> default: Box 'base' could not be fo...
出错:
-
C:\Vagrant>vagrant up
-
Bringing machine 'default' up with 'virtualbox' provider...
-
==> default: Box 'base' could not be found. Attempting to find and install...
-
default: Box Provider: virtualbox
-
default: Box Version: >= 0
-
==> default: Box file was not detected as metadata. Adding it directly...
-
==> default: Adding box 'base' (v0) for provider: virtualbox
-
default: Downloading: base
-
default:
-
An error occurred while downloading the remote file. The error
-
message, if any, is reproduced below. Please fix this error and try
-
again.
-
-
Couldn't open file /E:/WorkSpace/Vagrant/base
原因分析:
在使用vagrant init
命令初始化配置文件的时候未指定虚拟机名称
,也就是命令:vagrant box add BoxName
boxpath中的BoxName。
解决办法:
1.再来一遍,重新生成Vagrantfile
配置文件
vagrant init BoxName
2.修改Vagrantfile
文件中config.vm.box
参数:
config.vm.box = "base"
将base修改为你的虚拟机名称。
参考:官方链接
文章来源: blog.csdn.net,作者:lxw1844912514,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/lxw1844912514/article/details/100028772
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)