Ubuntu HPC NFS client on compute nodes
From Notes_Wiki
Home > Ubuntu > HPC setup with openpbs and openmpi > NFS client on compute nodes
- Install NFS client packages on compute node
- apt install -y nfs-common
- Create mount directory
- mkdir /export
- Mount master node /export directory in compute node via '/etc/fstab' using:
- <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
- Mount the NFS path
- mount -a
Home > Ubuntu > HPC setup with openpbs and openmpi > NFS client on compute nodes