Link to home
Start Free TrialLog in
Avatar of mnis2008
mnis2008

asked on

NFS write Error

I have an NFS server where /home is exported. On the Client I can mount the FS with NFS4. But I am not able to write anything on the NFS imported share.

On server:
# cat /etc/exports
/exports        *(ro,sync,insecure,root_squash,no_subtree_check,fsid=0)
/exports/home   *(rw,nohide,sync,insecure,root_squash,no_subtree_check)
# df -h |grep home
/dev/mapper/VolGroup00-home  194G   36M  184G   1% /home


On client
# df -h|grep home
Server:/home          194G   36M  184G   1% /home_new

I am able to see the files but I am not able to write to share from client

Avatar of wesly_chen
wesly_chen
Flag of United States of America image

> /exports        *(ro,sync,insecure,root_squash,no_subtree_check,fsid=0)
On NFS server, take out this line.
do
# chmod 755 /exports
# exportfs -a
ASKER CERTIFIED SOLUTION
Avatar of wesly_chen
wesly_chen
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial