Ubuntu HPC NFS client on compute nodes

From Notes_Wiki
Revision as of 04:09, 23 February 2023 by Saurabh (talk | contribs)

Home > Ubuntu > HPC setup with openpbs and openmpi > NFS client on compute nodes

  1. Install NFS client packages on compute node
    apt install -y nfs-common
  2. Create mount directory
    mkdir /export
  3. Validate that master NFS exports are visible via:
    showmount -e master
    #OR showmount -e master-ib
    <ore>
  4. Mount master node /export directory in compute node via '<tt>/etc/fstab</tt>' using:
    <pre>
    <master-node-name>:/export /export nfs defaults 0 0
    In case of infiband use <master-node-name> as <master-ib> etc. so that NFS is mounted via Infiband network
  5. Mount the NFS path
    mount -a


Home > Ubuntu > HPC setup with openpbs and openmpi > NFS client on compute nodes