一、Ping测试
先测试磁盘网络的连通性
例如:这里申请的网络磁盘是: 127.0.0.1:/shareData
ping 127.0.0.1
二、挂载
确认连通后,确定需要挂载的目录,这里服务器的挂载目录为:/data/share
(自主选择创建目录)
mount 127.0.0.1:/shareData /data/share
注: 如果挂载报错,报以下错误,有可能是没有安装nfs-utils,使用yum进行安装
yum install nfs-utils
mount: wrong fs type, bad option, bad superblock on 127.0.0.1:/shareData,missing codepage or helper program, or other error(for several filesystems (e.g. nfs, cifs) you mightneed a /sbin/mount.<type> helper program)In some cases useful info is found in syslog - try
三、验证
使用df -h
查看是否挂载成功