--------------------------------SERVER yum install nfs-utils mkdir /root/share chmod -R 777 /root/share chown -R nfsnobody:nfsnobody /root/share systemctl enable rpcbind systemctl enable nfs-server systemctl enable nfs-lock systemctl enable nfs-idmap systemctl start rpcbind systemctl start nfs-server systemctl start nfs-lock systemctl start nfs-idmap nano /etc/exports >>> /root/share 10.6.24.211(rw,sync,no_root_squash,no_all_squash) OPTION-1 - FW STOP systemctl stop firewalld.service OPTION-2 - FW RUN firewall-cmd --permanent --zone=public --add-service=nfs firewall-cmd --permanent --zone=public --add-service=mountd firewall-cmd --permanent --zone=public --add-service=rpc-bind firewall-cmd --reload systemctl restart nfs-server --------------------------------CLIENT yum install nfs-utils mkdir -p /mnt/nfs/test mount -t nfs 10.6.24.186:/root/share /mnt/nfs/test/ df -hk nano /etc/fstab >>> 10.6.24.186:/root/share /mnt/nfs/test/ nfs defaults 0 0