NFS on Centos 6

How to install NFS on Centos 6

yum install nfs-utils nfs-utils-lib

Set nfs to start at boot and start services

chkconfig nfs on 
service rpcbind start
service nfs start

Add the directory you want to share to /etc/exports

/home           1.2.3.4(rw,sync,no_root_squash,no_subtree_check)

1.2.3.4 is IP which is allowed to mount shared folder
rw allows to read-write the folder
sync confirms requests to the shared directory only once the changes have been committed.
no_subtree_check prevents the subtree checking.
no_root_squash allows root to connect to the designated directory
Once you have added shared folder run following command to export settings

exportfs -a

Look your current file system

df -h

Setting up client 

yum install nfs-utils nfs-utils-lib

Create folder for mounting file system

mkdir -p /mnt/nfs/home

Mount file system

mount 2.3.4.5:/home /mnt/nfs/home

2.3.4.5 is IP of server with shared file system.

 

Was this answer helpful?

 Print this Article

Also Read

Autorun in Linux

To set a script to start at boot in CentOS, add it into /etc/rc3.d/S99local. For example:...

Epel Centos

Some packages are missing from the base repository. This guide shows how to install RHEL EPEL...

Cron

Cron is the daemon that can be used to schedule tasks according to time, day of the month,...

Asteriks +TLS+RSTP Encrypt on centos

IN PROGRESS! this guide was gathered from official asteriks wikies...

!!Actual Linux KB located : wiki.vpsget.com ***

Linux kb/wiki moved to opur wiki pages and all new articled publiched here:...