...
As just mentioned, it is necessary to install on the VMs, both servers and clients that are part of the NFS, the packages necessary for the correct functioning of the NFS (usually these packages are already installed by default in common operating systems). Then insert the client list in the /etc/exports file and update the service
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
# Install the below package for NFS server on CentOS
$ sudo yum install -y nfs-utils
# Edit /etc/exports by inserting the exported directory (es. nfsshare), the IPs of the clients (es. 192.168.100.0/24) and how to access the exported directory
/<path>/<exported_dir> X.X.X.0/24(ro,sync,no_root_squash,no_all_squash)
# Update the service
$ sudo exportfs -rav |
How to deploy NFS SEP
Install the tool using Helm
...