When attempting to add an NFS datastore to an ESXi host, the operation fails with error message:
"The following error is observed in the VMkernel logs,Unable to complete Sysinfo operation. Please see the VMkernel log file for more details
"
var/run/log/vmkernel.log
on ESXi host will report error as "The mount request was denied by the NFS server
"2025-06-26T02:21:50.401Z cpu88:2101111 opID=8a38b3db) StorageApdHandler: 1051: Freeing APD handle 0x431df7c02c20 [f191d282-6b925cd3]
2025-06-26T02:21:50.401Z cpu88:2101111 opID=8a38b3db) StorageApdHandler: 1135: APD Handle freed!
2025-06-26T02:21:50.401Z cpu88:2101111 opID=8a38b3db)NFS: 194: NFS mount 192.168.##.##:<share path> failed: The mou
nt request was denied by the NFS server. Check that the export exists and that the client is permitted.
VMware ESXi 7.x
VMware ESXi 8.x
The issue occurs due to access restrictions or misconfiguration on the NFS server. The NFS server may deny the mount request if:
The NFS export does not exist.
The ESXi host is not permitted access to the NFS share.
Verify NFS Server Configuration:
Confirm that the NFS export path exists on the NFS server.
Ensure that the ESXi host has been granted appropriate permissions on the NFS server.
Validate Network Connectivity:
Confirm that the ESXi can communicate with the NFS server.
Use the following commands to check connectivity:
vmkping <NFS_Server_IP>
nc -vz <NFS_Server_IP> 2049
Check Firewall Rules and Export Settings:
Verify that there are no firewall rules blocking the connection between the ESXi host and the NFS server.
On the NFS server, ensure that the export configuration allows the ESXi host's IP address or subnet.
If the above checks do not resolve the issue, engage the storage team to review and correct the access settings on the NFS server.
Additional Information
After resolving the access issue, retry the operation to mount the NFS datastore.
To mount the NFS datastore from the ESXi CLI:esxcli storage nfs add --host=<NFS_Server> --share=<NFS_Share_Path> --volume-name=<Datastore_Name>