Quote:
Originally Posted by linuxnightowl84
Hello Vivek,
Tried with root_squash
[root@nfs tmp]# cat /etc/exports
#
/windows *(rw,root_squash)
[root@client root]# mount 172.30.0.8:/windows win/
mount: 172.30.0.8:/windows failed, reason given by server: Permission denied
Linuxnightowl84
|
What is the output of following?
Code:
showmount -e <IP address of NFS>
The output from the above command shows you the directories exported, and to whom they are exported.
Also run
Code:
rpcinfo -p <IP address of NFS>
Make sure rpc and nfs client services are running on client
Make sure rpc and nfs server running on server itself
Also make sure your client IP address exists in /etc/hosts on nfs server and server IP exists in /etc/hosts on client
Lemme know