Não é possível montar automaticamente o compartilhamento NFS usando fstab

4

No servidor Ubuntu 14.04, eu tenho um compartilhamento de montagem corretamente com o seguinte comando:

sudo mount -a 192.168.10.5:/mnt/sf_nas/movies /mnt/movies

No entanto, quando eu adiciono a linha abaixo a /etc/fstab e reinicializo, o compartilhamento não é montado:

192.168.10.5:/mnt/sf_nas/movies /mnt/moviesnfs auto,noatime,nolock,bg,nfsvers=4,intr,tcp,actimeo=1800 0 0

Alguém pode me dizer o que eu estou sentindo falta aqui? Obrigado antecipadamente!

    
por Sean Cunningham 12.10.2014 / 22:59

1 resposta

4

Configurar nfsvers=4 causaria falha na montagem se o seu serviço NFS fosse a versão 3. Você precisa definir nfsvers=3 ou não configurá-lo (a partir de man nfs ):

nfsvers=n      The  NFS  protocol  version  number  used to contact the
               server's NFS service.  If the server  does  not  support
               the requested version, the mount request fails.  If this
               option  is  not  specified,  the  client  negotiates   a
               suitable  version  with  the  server,  trying  version 4
               first, version 3 second, and version 2 last.
    
por muru 12.10.2014 / 23:31