centos7挂载nfs存储
小白教程,一看就会,一做就成。
1.安装NFS服务
#安装nfs
yum -y install rpcbind nfs-utils
#创建目录(我这边是/data/upload)
mkdir -p /data/upload
#写/etc/fstab文件,添加要挂载的nfs盘
172.16.76.14:/bgptglxtxc_2021 /data/upload nfs defaults 0 0
然后mount -a
查看df -h
如果写/etc/fstab文件,mount -a,报错
mount.nfs: remote share not in 'host:dir' format
可以手动挂载试试
mount -t nfs 172.16.76.14:/bgptglxtxc_2021 /data/upload