Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vagrant ssh 'private_key_path` file must exist

Tags:

vagrant

I'm getting this error during 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

How do I setup the private key in order to ssh into use vagrant ssh? I'm using Windows 7.

My vagrant file

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
like image 349
DarVar Avatar asked Jul 29 '14 14:07

DarVar


Video Answer


1 Answers

So in my case I was using cygwin with windows, and I received:

* `private_key_path` file must exist: 
C:\cygwin64\home\basic.user/.vagrant.d/insecure_private_key

After a few minutes of investigation I realized the VAGRANT_HOME environment variable was not ok, so exporting the right environment variable did the job:

VAGRANT_HOME=/cygdrive/c/Users/basic.user
export VAGRANT_HOME
like image 92
Adrian H Avatar answered Sep 29 '22 23:09

Adrian H