Ubuntu18.04 を Vagrant でセットアップし…
Vagrant の HOME フォルダを移動し、前に行った以下の作業して vagrant を起動したら以下のエラーが発生。
export file がなんかだめっぽい。。。対応したのでメモしておきます。
Vagrant を起動したらexports ファイルのエラー
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 &quot;vagrant reload&quot;:</p> <p>exports:2: path contains non-directory or non-existent components: /xxxx/xxxx/xxxx/www exports:2: no usable directories in export entry exports:2: using fallback (marked offline): /xxxx/xxxx
/etc/exports の確認・編集
/etc/exports ファイルを確認します。
sudo vi /etc/exports
# VAGRANT-BEGIN: 501 0437bd85-c841-4755-8377-7d43843fe1e4 "/xxxx/xxxx/xxxx/www"192.168.55.55 -alldirs -mapall=501:20 # VAGRANT-END: 501 0437bd85-c841-4755-8377-7d43843fe1e4
先程のエラーのパスが書かれた行を削除して保存し、 vagrant を再起動します。
vagrant reload
無事再起動できました!