How to Configure CentOS 6 NFS Service
Server Side Disable SeLinux Edit the configuration file: vi /etc/selinux/config Modify as follows: #SELINUX=enforcing # Comment out #SELINUXTYPE=targeted # Comment out SELINUX=disabled # Add this line Then reboot the system: reboot # Restart the system Create a Directory Using the root user, create a directory named /nfs. Note: It’s best to check which partition has the most space by running df, as the root (/) partition may not have the most space. In some automatic partitioning setups, the /home partition may have the most space. ...