First step is to create an NFS server using an Ubuntu server
1.Install Ubuntu Server
2.Install NFS server package :
apt install nfs-kernel-server
3.Create a NFS Share Folder:
mkdir /nfsshareshare
chown -R nobody:nogroup /nfsshareshare
chmod 777 /nfsshareshare
4.Create exports config file
vi /etc/exports and add below details:
/nfsshareshare *(rw,sync,no_root_squash,no_subtree_check,insecure)
5.Apply exports config using
exportfs -a
6. verify the share details using:
showmount -e
7.Now From vCenter server create Datastore and provide share path and NFS server name:
Comments
Post a Comment