linux_wiki:nfs_shares

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

linux_wiki:nfs_shares [2016/03/18 23:13]
billdozor [NFS Shares]
linux_wiki:nfs_shares [2019/05/25 23:50]
Line 1: Line 1:
-====== NFS Shares ====== 
- 
-**General Information** 
- 
-Creating NFS shares on a server and connecting to them via a client.  
- 
-**Checklist** 
-  * Distro(s): Enterprise Linux 7 
-  * Other: Two systems (server and client) 
- 
----- 
- 
-====== NFS Server Setup ====== 
- 
-  * Install required package<code bash>yum install nfs-utils</code> 
-  * Start and enable the NFS Server<code bash>systemctl start nfs-server 
-systemctl enable nfs-server</code> 
-  * Create your share directory structure<code bash>mkdir -p /data/share1</code> 
-  * Create an export line to share the directory<code bash>vim /etc/exports 
- 
-/data/share1  192.168.1.0/24(rw)</code> 
-    * /data/share1 => the directory to share 
-    * 192.168.1.0/24(rw) => share to entire network with read/write. 
-      * Other ways to share are to specify single hostnames(short, fqdn, single ip), IP networks (as shown), hostnames/domains with wildcards (*.mydomain.edu). See man exports for more details. 
-  * If a firewall is running, allow nfs, rpc-bind, and mountd<code bash>firewall-cmd --permanent --add-service=nfs 
-firewall-cmd --permanent --add-service=rpc-bind 
-firewall-cmd --permanent --add-service=mountd 
-firewall-cmd --reload</code> 
-    * nfs (tcp/udp 2049) => needed for NFSv4 
-    * rpc-bind (tcp/udp 111) => needed for NFSv3 compatibility and for showmount to work from client 
-    * mountd (tcp/udp 20048) => needed for the "showmount -e hostname" command to work from a client 
- 
----- 
- 
-====== NFS Client Setup ====== 
- 
-  * Install required package<code bash>yum install nfs-utils</code> 
-  * View available mounts on NFS Server<code bash>showmount -e fileserver01 
- 
-Export list for fileserver01: 
-/data/share1 192.168.1.0/24</code> 
-  * Mount temporarily<code bash>mount -t nfs fileserver01:/data/share1 /mnt</code> 
-  * Mount persistently<code bash>vim /etc/fstab 
- 
-## NFS Shares ## 
-fileserver01:/data/share1  /remote  nfs  _netdev  0 0</code> 
-    * _netdev => Mount option to skip mounting this location until the network is available. 
- 
----- 
  
  • linux_wiki/nfs_shares.txt
  • Last modified: 2019/05/25 23:50
  • (external edit)