davcic
davcic

Reputation: 11

Vagrant - The host path of the shared folder is missing: ../keys

When I try to run vagrant up or vagrant provision I get this error:

There are errors in the configuration of this machine. Please fix the following errors and try again:

vm:

* The host path of the shared folder is missing: ../../../../keys

I already tried vagrant destroy but I get the same error.

Does anybody have suggestions on what to check?

I'm on ubuntu 15.10

Upvotes: 1

Views: 2404

Answers (1)

David Wilkinson
David Wilkinson

Reputation: 5118

I've had this once before and there's plenty of possible solutions on the web.

What worked for me is to simply create the folder that's apparently missing. Do the following (easiest on command line):

cd /path/to/wherever/it/is/supposed/to/be/
mkdir keys

You should then be able to vagrant up fine.

Upvotes: 2

Related Questions