Thursday, 4 April 2013

setup nfs on rhel 6






nfs server is on 192.168.0.106

[root@localhost ~] yum install nfs*
[root@localhost ~]nano /etc/exports

/share 192.168.0.0/24(rw,sync)

[root@localhost ~] mkdir /share
[root@localhost ~] chmod 777 /share/
[root@localhost ~] service rpcbind start
[root@localhost ~]service nfs restart

client side

showmount -e 192.168.0.106

mount -t  192.168.0.106:/share /mnt

No comments:

Post a Comment