Skip to content

DOCSP-5525 update NFS mount params #5232

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions source/administration/production-notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,8 @@ sufficient performance to support a MongoDB deployment.

.. _production-nfs:

Remote Filesystems
``````````````````
Remote Filesystems (NFS)
````````````````````````

With the WiredTiger storage engine, WiredTiger objects may be stored on
remote file systems if the remote file system conforms to ISO/IEC
Expand All @@ -530,7 +530,17 @@ than local file systems, using a remote file system for storage may
degrade performance.

If you decide to use NFS, add the following NFS options to your
``/etc/fstab`` file: ``bg``, ``nolock``, and ``noatime``.
``/etc/fstab`` file:

- ``bg``
- ``hard``
- ``nolock``
- ``noatime``
- ``nointr``

Depending on your kernel version, some of these values may already be
set as the default. Consult your platform's documentation for more
information.

Separate Components onto Different Storage Devices
``````````````````````````````````````````````````
Expand Down