Reputation: 6155
I am new to vagrant and have created a machine.
When I do a vagrant up I am getting the following error:
NFS is reporting that your exports file is invalid. Vagrant does this check before making any changes to the file. Please correct the issues below and execute "vagrant reload":
exports:23: path contains non-directory or non-existent components:
/Path/To/vagrant/manifests
I understand the path is incorrect, but how and where do I update it to the correct path?
Upvotes: 0
Views: 583
Reputation: 1193
Remove /etc/exports and recreate the exports file again.
sudo rm /etc/exports
sudo touch /etc/exports
vagrant halt
vagrant up
The solution has taken from: https://gist.github.com/ikennaokpala/79f033880ecd38272a411350c6d573c0
Upvotes: 2