Centos 7 - How To Install NFS and Mount Remotely

Server Side Config

1.) First install nfs-utils

yum -y install nfs-utils

2.) Configure nfs share

Create a directory for your NFS share

mkdir /datastore

Create your NFS share in /etc/exports

echo "/datastore 10.220.101.0/24(rw,sync,no_root_squash)" >> /etc/exports
systemctl restart nfs

/etc/exports is where all NFS shares are defined

Allowed Client IP Range = 10.220.101.0/24

Read and Writing Allowed = rw

no_root_squash = makes it so the default of nobody is not used on the NFS share as a user (not secure in normal environments with user access but it makes sense for our situation)

sync = a good idea because otherwise the nfs server will reply to requests for unwritten/unstable data which can lead to corruption and data loss potentially.

Client Side

yum -y install nfs-utils

mount 10.10.2.20:/tmp/nfsmount /mnt/nfs/

IP of NFS Server = 10.10.2.20

NFS Share = /tmp/nfsmount

Local Mount Path = /mnt/nfs

Make it permanent with fstab

10.10.2.20:/tmp/nfsmount /mnt/nfs nfs defaults 0 0

Troubleshooting

Most issues are a result of a few things.

  1. You can't mount because nfs-utils was not installed on the client side.
  2. The IP range you specified is incorrect or invalid (if you are using NAT absolutely verify what the source IP from your client looks like to the server).
  3. Insecure ports issue if you are using NAT (you should set the "insecure" option
 rpc.mountd: refused mount request from somehostname.com for /some/path (/a/path/): illegal port 59201

If you get the above error you are probably using NAT somewhere between the client and server.  NAT mapping ends up resulting in high and so-called "insecure" ports to be used (I guess the fact that they are unprivileged and a non-root user could easly sniff or intercept on those ports). However if that's not a concern you modify your exports line like this:

/datastore 10.220.101.0/24(insecure,rw,sync,no_root_squash)


Tags:

centos, install, nfs, mount, remotely, utils, bcitcourse, yum, plugins, fastestmirror, kb, epel, _, metalink, extras, updates, updateinfo, primary_db, mb, eta, http, repo, virtualhosting, hk, repodata, dcc, ec, dec, ef, fb, bda, bd, db, primary, sqlite, bz, errno, unavailable, loading, speeds, cached, hostfile, ftp, cuhk, edu, jaist, ac, jp, resolving, dependencies, transaction, installed, processing, dependency, libtirpc, gssproxy, libnfsidmap, libevent, keyutils, libini_config, libverto, module, libref_array, ref_array_, ini_config_, libcollection, libbasicobjects, updated, update, libpath_utils, path_utils_, tevent, resolution, resolved, repository, installing, updating, summary, packages, upgrade, download, downloading, delta, rpms, disabled, usr, bin, applydeltarpm, rpm, os, succeeded, cleanup, verifying, configure, shares, defined, etc, exports, mkdir, datastore, echo, quot, rw, sync, no_root_squash, systemctl, restart,

Latest Articles

  • Cisco Unified Communication Manager (CUCM) - How To Add Phones
  • pptp / pptpd not working in DD-WRT iptables / router
  • systemd-journald high memory usage solution
  • How to Install FreePBX in Linux Debian Ubuntu Mint Guide
  • How To Install Cisco's CUCM (Cisco Unified Communication Manager) 12 Guide
  • Linux Ubuntu Redhat How To Extract Images from PDF
  • Linux and Windows Dual Boot Issue NIC Won't work After Booting Windows
  • Cisco CME How To Enable ACD hunt groups
  • How to install gns3 on Linux Ubuntu Mint
  • How to convert audio for Asterisk .wav format
  • Using Cisco CME Router with Asterisk as a dial-peer
  • Cisco CME How To Configure SIP Trunk VOIP
  • Virtualbox host Only Network Error Failed to save host network interface parameter - Cannot change gateway IP of host only network
  • Cisco CME and C7200 Router Testing and Learning Environment on Ubuntu 20+ Setup Tutorial Guide
  • Abusive IP ranges blacklist
  • How to Install Any OS on a Physical Drive from Windows Using VMware Workstation (Linux, Windows, BSD)
  • CDN Cloudflare how to set and preserve the real IP of the client without modifying application code on Apache
  • CentOS 7 fix Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=container error was 14: curl#6 -
  • Ubuntu Debian How To Install Recommended Packages Automatically
  • How to set Linux Ubuntu Redhat Debian Command Line http https socks proxy for yum apt