0
点赞
收藏
分享

微信扫一扫

Install Nfs

写心之所想 2022-06-11 阅读 103
yum install nfs-utils -y
mkdir -p /nfs
cat > /etc/exports << EOF
/nfs 192.168.0.0/24(rw,sync,no_root_squash,no_all_squash)
EOF
systemctl start nfs
systemctl start rpcbind
systemctl enable nfs
systemctl enable rpcbind
showmount -e localhost
firewall-cmd --permanent --zone=public --add-service=nfs
firewall-cmd --reload
举报

相关推荐

NFS

NFS部署

#SCP,NFS

NFS共享

NFS服务

FTP、NFS

linux nfs

0 条评论