
Originally Posted by
Prem Bangar
Hi Team,
I have made (Centos) NFS server.
but at client side when i entered mount 192.168.57.123:/data/notes/ /linuxnfs/ command i am facing below error. please tell me where i have to do changes
root@premnath-desktop:~# mount 192.168.57.123:/data/notes/ /linuxnfs/
mount.nfs: access denied by server while mounting 192.168.57.123:/data/notes/
my /etc/exports on server(192.168.57.123) is like
/data/notes *(rw)
Yes, you need to start portmap and nfslock services on the client too. What is the output from the following
Code:
showmount -e 192.168.57.123
Make sure firewall is not blocking connection and port. And finally run the mount command as follows to get more info:
Code:
mount -v 192.168.57.123:/data/notes/ /linuxnfs/
Also, check NFS server log files in /var/log/ directory.