classes:la_slapd_l2
This is an old revision of the document!
Server: Configure NFS to export home directories to a client system
This section covers configuring NFS to export filesystems to remote computers. For the purpose of this tutorial, our remote filesystems will be the home directories of users defined in our OpenLDAP directory. Let's jump right in on our server and install NFS then make a directory to store our user home directories:
sudo apt-get -y install nfs-kernel-server sudo mkdir -p /export/users
The file /etc/exports
defines any filesystems you are making available to remote systems. Edit /etc/exports
to include the following:
/home cls-kvm2.itsm.unt.edu(rw,sync,no_root_squash)
Start the nfs-kernel-server service and confirm there are no errors:
sudo service nfs-kernel-server start sudo service nfs-kernel-server status
Confirm the filesystem is being exported to the system we expected using the showmount -e
command:
showmount -e Export list for cls-kvm1: /home cls-kvm2.itsm.unt.edu
Edit /etc/auto.master
to include the following line at the end; save & close:
/nfs /etc/auto.nfs
classes/la_slapd_l2.1481844612.txt.gz · Last modified: 2016/12/15 15:30 by curry_searle