nfs-server 搭建

Yark發表於2021-09-07

服務安裝

yum install -y nfs-utils

配置共享目錄

#cat /etc/exports
#共享目錄路徑     設定授權網段  設定許可權
/app/nfs-shared  192.168.10.0/24(rw,no_root_squash,sync,no_wdelay)

服務啟動和服務開機自啟

systemctl start nfs
systemctl enable nfs

防火牆放行要連線nfs的網段

#firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.10.0/24" port protocol="tcp" port="111" accept"
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.10.0/24"  accept"
firewall-cmd --reload

客戶端掛載

yum install nfs-utils
mount -t nfs -o vers=3,nolock,noatime,nodiratime 192.168.10.99:/app/nfs-shared /mnt/
本作品採用《CC 協議》,轉載必須註明作者和本文連結
:kissing_closed_eyes: 我愛小硯 乀(ˉεˉ乀)