Operating System - HP-UX
1836451 Members
2445 Online
110100 Solutions
New Discussion

ll command failed by the nfs error.

 
Y.J.JIN
Advisor

ll command failed by the nfs error.

Hi,

nfs mount point on serverA(/test_nfs)
/test_nfs -> serverB:/var/test

generated some error on /test_nfs

on serverA
ll /test_nfs

then, prompt has hardened

Isn't there any idea without rebooting?

4 REPLIES 4
Eric Antunes
Honored Contributor

Re: ll command failed by the nfs error.

Hi,

Check permissions the user doing ll have on that NFS mount point. See also if you can ping server B from server A:

#ping server B

Best Regards,

Eric Antunes
Each and every day is a good day to learn.
Y.J.JIN
Advisor

Re: ll command failed by the nfs error.

Hi, Eric Antunes

thank you.

Sure the serverB alive.

I want to know the way that the one except for the reboot recovers when a server become the above condition


Jannik
Honored Contributor

Re: ll command failed by the nfs error.

Server A (as root)
# cat /etc/exports
/test_nfs -anon=2,root=server_b

# exportfs -av

Server B (as root)
# mount server_a:/test_nfs /test_nfs
# cd /test_nfs
# ll

Hope it helps

jaton
Y.J.JIN
Advisor

Re: ll command failed by the nfs error.

Thanks!