I have a CentOS 6 server with NFS installed. In my /etc/exports
file:
/shares/nfs 10.0.0.0/16(rw,sync,no_subtree_check,no_root_squash)
exportfs -a
was done.
On my clients I have this in my /etc/fstab
:
10.0.X.XX:/shares/nfs /mnt/fs nfs hard,intr,retrans=2,rsize=32768,wsize=32768,noatime,timeo=600,nosuid 0 0
One client mounts the folder just fine, the other gives nobody:nobody
user and permission to the files and therefore my applications can't use it? Why is this hapening? The UIDs are the same on both clients and the server and we don't use domain names, only IP addresses.