NFS Share (add client to export)

Post Reply
chris
Site Admin
Posts: 36
Joined: Mon Dec 09, 2019 6:55 pm

NFS Share (add client to export)

Post by chris »

RUN NOTES
=========
# Log onto the GUI for isilon (https://ipaddress:8080) using root/ password

# Go to the NFS Share to edit the exports
## click on "PROTOCOLS" tab then "UNIX Sharing (NFS)"
## Find the share you want to edit and click on the right side where it says "View Details"
## For read/write on the Clients: row click edit.
## Add your hosts at the bottom. each host on a new line.
## Hit Save.
## For read/write on the Always Read-Write Clients: row click edit.
## Add your hosts at the bottom. each host on a new line.
## Hit Save.

#If your request is for READ ONLY clients
## For read/write on the Clients: row click edit.
## Add your hosts at the bottom. each host on a new line.
## Hit Save.

## For read/write on the Always Read-Write Clients: row click edit.
## Add your hosts at the bottom. each host on a new line.
## Hit Save.

## For read/write on the Root Clients: row click edit.
## Add your hosts at the bottom. each host on a new line.
## Hit Save.

Server Work
-----------
## R/W SERVERS ##
# ssh to <server> and become root

# Create new directory
cd /
mkdir <directory>

# Add entry to fstab
cd /etc
cp fstab fstab.<DATE>
vi fstab
## add line:
## make sure to include "nfs-" before mount to make use of SmartConnect on Isilon
nfs-<isilon(fqdn)>:/ifs/<directory>/<share-name> /<directory> nfs defaults 0 0

# Mount share
cd /
mount /<directory>

# Verify
df -h /<directory>

# Repeat steps for <server x,y,z>


## R/O SERVERS ##
# ssh to <server> and become root

# Create new directory
cd /
mkdir /<directory>

# Add entry to fstab
cd /etc
cp fstab fstab.<DATE>
vi fstab
## add line:
isilon(fqdn):/ifs/<directory>/<share-name> /<directory> nfs defaults 0 0

# Mount share
cd /
mount /<directory>
# Verify
df -h /<directory>

# Repeat steps for <server x,y,x>

<< SERVER WORK COMPLETE; CHG COMPLETE >>
Post Reply