Mounting File Systems From Windows Instances

Users of Windows Server 2012 R2 and later versions can mount a file system on any available drive letter using the mount target IP address and the file system export path.

The Windows NFS client must be installed on the instance from which you want to mount the file system.

Caution

Installing the Windows NFS client might require a restart of your system.
Access to NFS file systems requires UNIX-style user and group identities, which aren't the same as Windows user and group identities. To enable users to access NFS shared resources, Windows client for NFS accesses file systems anonymously, using AnonymousGid and AnonymousUid. On brand new file systems, write permissions are only granted to the root user. The AnonymousGid and AnonymousUid identity values must be configured to allow write access.
Caution

Updating the 'AnonymousGid' and 'AnonymousUid' values require registry changes to your system.
After you have installed the NFS client and correctly mapped user identities, you can mount the file system to any available drive letter using the command line or Map network drive. You can access your file system through the chosen drive letter to write files.

Prerequisites

  • The file system must have at least one export in at least one mount target. When you create a new file system, an export for the file system is created at the same time. See Creating File Systems for more information.
  • Correctly configured security rules for the mount target. See Security Rules for information about how security rules work in Oracle Cloud Infrastructure. Use the instructions in Configuring VCN Security Rules for File Storage to set up security rules correctly for your file systems.
Caution

Because Windows network providers prioritize SMB traffic over NFS traffic, there can be delays when connecting to a File Storage mount target for the first time. Subsequent connections are faster because the mount information is cached, but after the cache expires, the delay reoccurs. This causes intermittent slow performance. To improve performance, you can change the network provider order so that the NFS client is prioritized. For more information, see Accessing a Mounted File System is Slow or Fails After a Few Seconds.

Note

When mounting file systems, Network Lock Manager (NLM) is enabled for file locking by default. The default requires no specified mount option. Typical NFS workloads function normally using the default.

Some applications might require you to specify the nolock mount option. Refer to your application documentation for best practices regarding this mount option.

Using Windows Command Prompt

Using Windows File Explorer

Mounting File System Subdirectories

If your file system has an existing directory structure, you can mount any file system subdirectory. The subdirectory becomes the effective root directory at the mount point of the instance, and excludes sibling directories.

For example, suppose "FileSystem1" has an export path of /FileSystem1 and a directory structure like this:

This diagram shows an example directory structure and mount point.

The file system is exported from "MountTarget1" which has an IP address of 10.0.0.16.

The following command mounts directoryA to drive letter X:

mount 10.0.0.16:/rootdirectory/directoryA X:

Neither directoryB or FileB would be accessible from drive X.

Caution

Mounting a subdirectory to limit access to sibling directories is not sufficient to secure your file system. For information on security methods, see About File Storage Security.

Unmounting File Systems

Using the command line:

  1. In the standard Windows Command Line (CMD) window, mount the file system by typing the following. Replace 10.x.x.x: with the local subnet IP address assigned to your mount target, fs-export-path with the export path you specified when associating the file system with the mount target, and X with the drive letter of any available drive you want to map the file system to.

    umount X: 10.x.x.x:/fs-export-path
    Note

    Unmounting might require using the -f flag in the umount command. For example:
    umount -f X: 10.x.x.x:/fs-export-path