gpt4 book ai didi

Vagrant ssh 'private_key_path` 文件必须存在

转载 作者:行者123 更新时间:2023-12-04 17:19:09 25 4
gpt4 key购买 nike

我在 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

如何设置私钥以便 ssh 使用 vagrant ssh?我正在使用 Windows 7。

我的 Vagrant 文件
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 环境变量不正常,因此导出正确的环境变量完成了这项工作:
VAGRANT_HOME=/cygdrive/c/Users/basic.user
export VAGRANT_HOME

关于Vagrant ssh 'private_key_path` 文件必须存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25017624/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com