Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note: If you don’t know how to create an NFS volume or want to learn more about the NFS offering in Spinup please see How do I use the Spinup NFS storage offering?

Info

Additional performance tips can be found here: Amazon EFS Performance Tips.

Procedure

  • The first time you will need to download and run this script to install amazon-efs-utils on your server. This is required to easily mount an NFS volume with encryption. The script will install all required pre-requisites depending on your specific Linux distro. Wait until it finishes running:

    Code Block
    curl https://raw.githubusercontent.com/YaleSpinup/utils-storage/master/amazon-efs-utils/install_efs_utils.sh -o install_efs_utils.sh && \
    chmod 755 install_efs_utils.sh && \
    sudo ./install_efs_utils.sh
  • You can run the script again to confirm amazon-efs-utils is installed, e.g.

    Code Block
    $ sudo ./install_efs_utils.sh
    Detected OS: CentOS Linux 7 (Core)
    amazon-efs-utils already installed
    stunnel already installed
    stunnel 5.57 on x86_64-pc-linux-gnu platform
    No need to patch stunnel, version 5.57 already installed
  • If you run into issues or errors when running the script, you can contact spinup@yale.edu for support

...