Skip to content

Instantly share code, notes, and snippets.

@ikennaokpala
Last active March 8, 2024 12:54
Show Gist options
  • Star 42 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ikennaokpala/79f033880ecd38272a411350c6d573c0 to your computer and use it in GitHub Desktop.
Save ikennaokpala/79f033880ecd38272a411350c6d573c0 to your computer and use it in GitHub Desktop.
Vagrant error :NFS is reporting that your exports file is invalid

Vagrant error :NFS is reporting that your exports file is invalid

==> default: Exporting NFS shared folders...
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:2: path contains non-directory or non-existent components: /Users/<username>/path/to/vagrant
exports:2: no usable directories in export entry
exports:2: using fallback (marked offline): /
exports:5: path contains non-directory or non-existent components: /Users/<username>/path/to/vagrant
exports:5: no usable directories in export entry
exports:5: using fallback (marked offline): /

This means that you may already have old vagrant path definitions in your /etc/exports file.

Try opening up /etc/exports file to identify old or unwanted vagrant paths and removing them if necessary

On opening /etc/exports file each set begins with # VAGRANT-BEGIN: and ends with # VAGRANT-END:. Make sure to delete these and any other lines between VAGRANT-BEGIN: and VAGRANT-END:

or maybe

sudo rm /etc/exports
sudo touch /etc/exports

vagrant halt
vagrant up
@shradhabanerjee
Copy link

Thanks, worked for me 👍

@rombla
Copy link

rombla commented Mar 30, 2020

Thanks, worked for me as well !

@jacyhao
Copy link

jacyhao commented Apr 7, 2020

Very helpful! Thank you!

@chateaux
Copy link

chateaux commented Jul 4, 2020

Super!

Copy link

ghost commented Mar 15, 2021

Thank you for this!

@sanjeev-io
Copy link

Superb and thank you.

@bradsi
Copy link

bradsi commented Jan 5, 2022

Thanks!

@dominikfiala
Copy link

saved me plenty of time today, thank you sir

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment