Chapter 9
NFS Storage
Deploying NFS server:
dnf install nfs-utils -y
mkdir -p /nfsdata /home/ldap/ldapuser{1..9}vim /etc/exports
/nfsdata *(rw,no_root_squash)
/home/ldap *(rw,no_root_squash)systemctl enable --now nfs-server
systemctl enable --now firewalldfor i in nfs mountd rpc-bind; do firewall-cmd --add-service $i --permanent; done
firewall-cmd --reload
firewall-cmd --list-allshowmount -eMounting NFS share:
Mounting NFS with automount:
Automounting home folders:
Last updated