O cliente NFS pode montar, falha ao automontar

2

Eu tenho /etc/auto.master:

/cpy/users  /etc/auto.users --timeout=90

Eu tenho /etc/auto.users:

*   -fstype=nfs4,rw,proto=tcp,port=2049   server:/users/&

Em uma máquina "normal" do CentOS 5, estes funcionam de forma esplêndida. Na minha máquina virtual que foi construída usando "yum groupinstall core" e alguns pequenos ajustes, eu recebo isso quando o usuário me faz login:

Apr 14 09:33:29 testing automount[5240]: handle_packet: type = 3
Apr 14 09:33:29 testing automount[5240]: handle_packet_missing_indirect: token 136, name myself, request pid 5249
Apr 14 09:33:29 testing automount[5240]: attempting to mount entry /cpy/users/myself
Apr 14 09:33:29 testing automount[5240]: lookup_mount: lookup(program): looking up myself
Apr 14 09:33:29 testing automount[5240]: lookup(program): lookup for myself failed
Apr 14 09:33:29 testing automount[5240]: ioctl_send_fail: token = 136
Apr 14 09:33:29 testing automount[5240]: handle_packet: type = 3
Apr 14 09:33:29 testing automount[5240]: handle_packet_missing_indirect: token 137, name myself, request pid 5249
Apr 14 09:33:29 testing automount[5240]: failed to mount /cpy/users/myself
Apr 14 09:33:29 testing automount[5240]: attempting to mount entry /cpy/users/myself
Apr 14 09:33:29 testing automount[5240]: ioctl_send_fail: token = 137
Apr 14 09:33:29 testing automount[5240]: failed to mount /cpy/users/myself

Não há tráfego de rede no servidor NFS quando isso ocorre.

Eu percebo que pode ser um pouco difícil saber exatamente o que está errado, mas qualquer sugestão é bem-vinda.

    
por Bittrance 14.04.2011 / 09:45

2 respostas

1

Gn! Responda a mim mesmo:

chmod -x /etc/auto.master /etc/auto.users

Problema resolvido. Como é isso para uma mensagem de erro obscura?

    
por 14.04.2011 / 15:17
0

Tente simplificar seu arquivo /etc/auto.users um pouco:

*   -fstype=nfs4   server:/users/&

O sinalizador rw deve ser controlado pela exportação do servidor de qualquer forma, o material tcp / port deve ser deixado como padrão, a menos que você tenha hackeado especificamente para ser diferente.

    
por 14.04.2011 / 09:54