vSphere 6.0 error “unable to create NFS datastore"

简介:

vSphere 6.0 error “unable to create NFS datastore: specified key, name, or identifier already exists”


esxierrornfs01


Trying to add a new NFS datastore in vSphere, the system displays the error message “Unable to create NFS datastore: specified key, name, or identifier already exists”.

An NFS datastore mapped in a VMware cluster is not seen by some ESXi hosts and the attempt to map it again causes the error shown in the picture.

esxierrornfs02


 

Remove the datastore

To fix this matter, SSH the affected hosts and run the following command to list the configured NFS datastores:

# esxcli storage nfs list

esxierrornfs03


Since the storage is configured in the selected host, you need to remove it with the command:

esxcli storage nfs remove -v DatastoreName

# esxcli storage nfs remove -v lab-nasts421.nolabnoparty.local

esxierrornfs04


Executing the command to list the attached NFS datastores, no datastores are now detected.

# esxcli storage nfs list

esxierrornfs05


 

Map the NFS datastore

Once removed, to map the NFS datastore once again run the command:

esxcli storage nfs add -H NFS_IP_Hostname -s NFS_Share -v DatastoreName

# esxcli storage nfs add -H lab-nasts421.nolabnoparty.local -s /ts421_nfs01 -v ts421_nfs01

esxierrornfs06


Executing the command to list the attached NFS datastores, the configured NFS datastore is now listed.

# esxcli storage nfs list

esxierrornfs07


Accessing the vSphere Web Client, go to Datastore > Related Objects > Datastores tab to check if the NFS datastore is now available in vCenter Server.

esxierrornfs08

Do same steps for all the other hosts affected by this problem.

本文转自学海无涯博客51CTO博客,原文链接http://blog.51cto.com/549687/1826018如需转载请自行联系原作者


520feng2007

相关文章
|
6月前
|
Linux
Linux安装NFS挂载NFS卸载客户端服务端都有
Linux安装NFS挂载NFS卸载客户端服务端都有
153 0
|
6月前
|
Ubuntu 网络协议 Unix
【Linux】新唐NUC977挂载NFS实现网络文件传输
【Linux】新唐NUC977挂载NFS实现网络文件传输
|
6月前
|
Linux Shell Windows
通过Linux挂载Windows端NFS服务实现板端Linux传输文件到PC
通过Linux挂载Windows端NFS服务实现板端Linux传输文件到PC
420 0
|
6月前
|
存储 监控 网络协议
【Linux】文件服务NFS(Network File System)
【Linux】文件服务NFS(Network File System)
170 0
|
6月前
|
存储 Linux 网络安全
Linux系统安装NFS服务器
NFS是一种网络文件系统,英文全称Network File System,通过NFS可以让不同的主机系统之间共享文件或目录。通过NFS,用户可以直接在本地NFS客户端读写NFS服务端上的文件,是非常好的共享存储工具。本篇文章将介绍如何在CentOS7上安装NFS服务器,包括服务端和客户端安装两部分。
141 0
|
3月前
|
存储 Linux 网络安全
【Azure 存储服务】如何把开启NFS 3.0协议的Azure Blob挂载在Linux VM中呢?(NFS: Network File System 网络文件系统)
【Azure 存储服务】如何把开启NFS 3.0协议的Azure Blob挂载在Linux VM中呢?(NFS: Network File System 网络文件系统)
|
6月前
|
域名解析 Unix Linux
AIX上如何正确挂载Linux 的nfs共享目录分享篇
AIX上如何正确挂载Linux 的nfs共享目录分享篇
267 1
|
6月前
|
Unix Linux Shell
linux 配置NFS
NFS(Network File System)是跨平台的网络文件系统,允许不同操作系统和硬件通过RPC协议共享文件系统。服务端启动RPC服务和NFS,注册端口信息。客户端请求服务器的NFS端口,建立连接进行数据传输。优点包括配置简单、数据可靠、支持多系统间文件共享。缺点包括端口不固定、数据明文传输、安全性较低(基于IP认证)。在Redhat 9环境下,通过安装nfs-utils和rpcbind,配置共享目录和exports文件,设置权限,客户端安装相同软件包,使用showmount命令查看共享,挂载NFS目录,实现透明访问。
162 1
|
6月前
|
Linux 网络安全
Linux NFS协议详解
Linux NFS协议详解
206 5