ARTICLE DETAIL

资讯详情

深耕网站建设、视觉设计与SEO优化的一线实战洞察。

华为OceanStor9546分布式存储挂载NAS盘 - yi

华为OceanStor9546分布式存储挂载NAS盘 - yi


华为OceanStor 9546存储设备配置NFS服务,与dell emc isilon配置NFS服务相似,不用创建用户,直接在共享目录加客户端IP。
下面截图展示

image

 

image

 

image

 

 

linux服务器挂载NAS存储

修改 /etc/fstab

vi /etc/fstab

添加此行

nas.mydns.com:/fs4/model_file      /nasdata        nfs     rw,bg,hard,nointr,rsize=32768,wsize=32768,tcp,vers=4,timeo=600,actimeo=0 0 0

搜索/etc/fstab文件中满足条件的文件系统,进行挂载操作

mount -a

 挂截错误解决办法

nfs挂载错误

mount: wrong fs type, bad option, bad superblock on /dev/mappexxx,

missing codepage or helper program, or other error

In some cases useful info is found in syslog - try

dmesg | tail or so

rpm -qa|grep nfs    --查看nfs软件是否已经安装

挂截错误解决办法,安装NFS

apt-get install nfs-common      #ubuntut系统安装nfs
yum install nfs-utils    #CentOS系统安装nfs

 

返回列表