NFS con home directory ubuntu crittografata


15

Sto riscontrando problemi durante l'installazione di NFS con Vagrant:

Sul mio computer locale ho installato NFS:

apt-get install nfs-common nfs-kernel-server

E nel mio Vagrantfile impostalo per essere usato:

config.vm.share_folder("v-root", "/vagrant", ".", :nfs => true)

Su vagrant upottengo:

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.

Mi sto perdendo un passo o due qui?

Sono a conoscenza di alcuni problemi con le cartelle home crittografate ubuntus e NFS, ma capisco che questo dovrebbe essere solo un problema prima dell'avvio.

[aggiorna] il mio /etc/exportsfile è simile al seguente:

# 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

La macchina su cui stai lavorando ha anche il software client NFS? Nfs-common (non solo nfs-kernel-server) è installato?
mpez0,

Sì, nfs-commonè installato anche

Risposte:



0

Presumo che "<" e ">" nel file delle esportazioni siano ad esempio solo ... se non lo rimuovo.

/home/<user>/path/to/dir 192.168.33.11(rw,no_subtree_check,all_squash

Perché non provare prima a esportare / home e vedere se funziona?


La mia installazione funziona bene quando non si trova nella home directory.

Non sei sicuro che sia importante, ma come è montato / home, quale filesystem e / home è un link simbolico?
aseq,

Non sono sicuro: quali sono le impostazioni predefinite su Ubuntu 12.04?

0

prova a installare o configurare il demone idmapd su client e server. Ciò collegherà gli utenti remoti e locali. Quindi è necessario installare nfs-common sul lato client, questo fornisce l'opzione di montaggio nfs.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.