Ich habe Probleme beim Einrichten von NFS mit vagrant:
Auf meinem lokalen Computer habe ich NFS installiert:
apt-get install nfs-common nfs-kernel-server
Und in meinem Vagrantfile-Set soll es verwendet werden:
config.vm.share_folder("v-root", "/vagrant", ".", :nfs => true)
Auf vagrant up
bekomme ich:
exportfs: /home/<user>/path/to/dir does not support NFS export
Mounting NFS shared folders failed. This is most often caused by the NFS
client software not being installed on the guest machine. Please verify
that the NFS client software is properly installed, and consult any resources
specific to the linux distro you're using for more information on how to
do this.
Fehlt mir hier ein oder zwei Schritte?
Ich bin mir einiger Probleme mit Ubuntus-verschlüsselten Home-Ordnern und NFS bewusst, aber ich verstehe, dass dies nur vor dem Booten ein Problem sein soll.
[update] meine /etc/exports
datei sieht so aus:
# VAGRANT-BEGIN: 5af3e5d6-b086-416d-8eab-987275445634
/home/<user>/path/to/dir 192.168.33.11(rw,no_subtree_check,all_squash,
anonuid=1000,anongid=1000,fsid$
# VAGRANT-END: 5af3e5d6-b086-416d-8eab-987275445634
nfs-common
ist auch installiertAntworten:
Eigentlich ist es nicht möglich, irgendetwas über NFS innerhalb eines ecryptfs-Volumes zu exportieren. exportfs: Warnung: / home / user / share unterstützt den NFS-Export nicht
quelle
Ich gehe mal davon aus, dass das "<" und ">" in deiner Exportdatei nur zum Beispiel ist ... wenn nicht, entferne es.
Warum nicht zuerst versuchen zu exportieren / nach Hause und sehen, ob das funktioniert?
quelle
Versuchen Sie, den idmapd-Daemon auf dem Client und dem Server zu installieren oder zu konfigurieren. Das verbindet entfernte und lokale Benutzer. Dann müssen Sie nfs-common auf dem Client installieren. Dies bietet die Option nfs mount.
quelle