Share via

NFS suddenly stopped working

Kai 0 Reputation points
2026-04-01T20:32:53.33+00:00

Hello, our blob storage with NFS shares are not showing any files suddenly. Is something down?

Azure Blob Storage
Azure Blob Storage

An Azure service that stores unstructured data in the cloud as blobs.


1 answer

Sort by: Most helpful
  1. Ganesh Patapati 11,990 Reputation points Microsoft External Staff Moderator
    2026-04-08T16:04:19.9633333+00:00

    Hello Kai

    NFS version mismatch between the server and client can indeed lead to the error “mount.nfs: No such file or directory”.

    NFS has different versions like NFSv3, NFSv4. Sometimes, the server and the client may be using different versions of NFS which can lead to compatibility issues.

    In case the NFS version used by your client is higher than the server, you can force your client to use the same version as the server during the mount process. This can be done by specifying ‘vers=x’ (replace x with the version number) in the mount options.

    For example, if your server is running NFSv3, the mount command would look something like this:

    mount -t nfs -o vers=3 server:/path/to/directory /local/mount/point
    

    This should resolve the error if it was caused due to a NFS version mismatch.

    Also,

    The successful NFS mount confirms the storage service is reachable; however, the sudden loss of file visibility is typically due to recent ACL or identity permission changes—while the files may still exist, they can become inaccessible when directory-level ACL restrictions are applied, which results in this expected behavior.

    • Please verify file visibility through the Azure Portal (Container → Browse) or by using the Azure CLI with an authenticated identity; if the files are visible using these methods, it confirms the issue is due to an ACL or permission mismatch rather than data loss or a storage outage.

    Can you please update us if the action plan provided was helpful?

    Should there be any follow-up questions or concerns, please let us know and we shall try to address them.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.