- Lab
- A Cloud Guru
Working with Network Sharing via NFS in SUSE Linux Enterprise
In this hands-on lab, we will configure Network File Sharing (NFS) on a SUSE Linux Enterprise server. Once we have it configured, we will access that share from a second server. This task allows centralized storage for distributed users and can also be part of a disaster recovery scenario, as files located on the centralized server can be backed up and restored at the central location.
Path Info
Table of Contents
-
Challenge
On Server 2, via YaST, Install and Set Up NFS Server to Share Out `/exports/docs` Directory. Ensure It Is Writeable by Members of the `wheel` Group.
-
On Server 2, create the
/exports/docs
directory and ensure is it writeable bywheel
:sudo mkdir -p /exports/docs cd /exports sudo chown -R root:wheel ./docs sudo chmod 770 ./docs
-
Configure the share:
sudo yast
-
Select Network Services > NFS Server.
-
Press space bar to select
Start
. -
Add the directory
/exports/docs
. -
Change the default options to
rw,no_root_squash
. -
Press F10 to finish and F9 to quit.
-
Verify that the NFS server is set up properly:
cat /var/lib/nfs/etab
-
-
Challenge
Mount the Network Share on Server 1 Using the CLI. Create a Directory and a File and Verify They Exist on Server 2.
-
Access Server 1 via SSH.
-
Create a mount point:
sudo mkdir /mnt/nfsdocs
-
Mount the share:
sudo mount 10.0.1.102:/exports/docs /mnt/nfsdocs
-
Set permissions on the directory:
sudo chown -R root:wheel /mnt/nfsdocs
sudo chmod 770 /mnt/nfsdocs
-
Create an example folder and a test file in the directory:
mkdir /mnt/nfsdocs/example
cd /mnt/nfsdocs/example
touch file1
-
Verify they exist on the NFS server:
exit
cd /exports/docs
ls
cd example
ls
You should see the recently created file and directory from Server 1.
-
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.