作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 vagrant up 期间收到此错误
There are errors in the configuration of this machine. Please fix
the following errors and try again:
SSH:
* `private_key_path` file must exist: insecure_key
Vagrant.configure("2") do |config|
config.vm.define "phusion" do |v|
v.vm.provider "docker" do |d|
d.cmd = ["/sbin/my_init", "--enable-insecure-key"]
d.image = "phusion/baseimage"
d.name = 'dockerizedvm'
d.has_ssh = true
#d.force_host_vm = true
end
v.ssh.port = 22
v.ssh.username = 'root'
v.ssh.private_key_path = 'insecure_key'
v.vm.provision "shell", inline: "echo hello"
#v.vm.synced_folder "./keys", "/vagrant"
end
end
最佳答案
所以就我而言,我使用的是 cygwin 带 window ,我收到了:
* `private_key_path` file must exist:
C:\cygwin64\home\basic.user/.vagrant.d/insecure_private_key
VAGRANT_HOME=/cygdrive/c/Users/basic.user
export VAGRANT_HOME
关于Vagrant ssh 'private_key_path` 文件必须存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25017624/
我在 vagrant up 期间收到此错误 There are errors in the configuration of this machine. Please fix the followin
我一直在使用PuPHPet创建虚拟开发环境。 昨天我为一个新盒子生成了一个配置文件。当我尝试使用vagrant up命令将其旋转时,收到以下错误消息: C:\xx>vagrant up Bringin
我是一名优秀的程序员,十分优秀!