LogoLogo
  • Voltage Park
    • Introduction
    • Quickstart
  • Products
    • On Demand
    • Long-Term Compute
  • On Demand
    • Getting Started
    • Dashboard
    • Deploy GPUs
      • Virtual Machines (VMs)
      • Bare Metal
    • My Instances
      • Jupyter Notebook
    • Deploy Storage
    • Attach Storage
    • Kubernetes
    • API
  • Organization
    • Account
    • Billing
  • Support
    • Support
    • Troubleshooting
      • Ubuntu Server Crash Troubleshooting Guide
      • Common Log Files for Troubleshooting
      • Options for Mounting VAST NFS Shares
      • InfiniBand Basic Setup
      • Local Storage (Configuring an LVM Volume on Voltage Park On-Demand Bare Metal Servers)
    • FAQs
  • Legal
    • Terms of Service
    • Compute Services Agreement
    • Privacy Policy
Powered by GitBook
On this page
  • Overview
  • Option 1: Manual Mount
  • With Vast Drivers
  • Without Vast Drivers
  • Verify Mount Is Active
  • Option 2: /etc/fstab entry
  • With Vast Drivers
  • Without Vast Drivers
  • Verify That Entries Were Added Successfully
  • Mount New Entries (Only Required the First Time)
  • Verify Mounts Are Active
  1. Support
  2. Troubleshooting

Options for Mounting VAST NFS Shares

Overview


This guide provides you with instructions on how to manually mount a VAST NFS share or how to configure /etc/fstab for automatic mounting.

Option 1: Manual Mount


This option will need to be done every time the server is rebooted.

With Vast Drivers

sudo mount -t nfs -o vers=3,nconnect=32,spread_reads,spread_writes,remoteports=<VAST_NFS_IP_RANGE> VASTIP:/VASTSHARE /localpath_on_server

Without Vast Drivers

sudo mount -t nfs -o vers=3,nconnect=16 VASTIP:/VASTSHARE /localpath_on_server

Verify Mount Is Active

df -h

Option 2: /etc/fstab entry


This option is done once and then will auto-mount shares every reboot.

With Vast Drivers

VASTIP:/VASTSHARE /localpath_on_server nfs rw,nconnect=32,nfsvers=3,spread_reads,spread_writes,remoteports=<VAST_NFS_IP_RANGE> 0 0

Without Vast Drivers

VASTIP:/VASTSHARE /localpath_on_server nfs rw,nconnect=16,nfsvers=3 0 0
VASTIP:/data /data nfs rw,nconnect=16,nfsvers=3 0 0

Verify That Entries Were Added Successfully

sudo cat /etc/fstab

Mount New Entries (Only Required the First Time)

sudo mount -a

Verify Mounts Are Active

df -h

PreviousCommon Log Files for TroubleshootingNextInfiniBand Basic Setup

Last updated 3 months ago