Configuration of NFS Server
# Configuration of NFS Server
-----------------------------
# Port Number:2049
------------------
# Required RPMS:
----------------
system-config-nfs-1.3.23-1.el5
nfs-utils-lib-1.0.8-7.2
nfs-utils-1.0.9-16.el5
# Configuration Files:
----------------------
/etc/exports
# Required Services and Daemons:
--------------------------------
nfs
# Configuration Steps:
----------------------
mkdir /viraj
# Create some files in the /praveshsailor
touch file{1,2,3,4,5}
vi /etc/exports
/praveshsailor *(rw,sync)
:wq
exportfs -a
exportfs -v
service nfs restart
chkconfig nfs on
# Client Side:
--------------
showmount -e 192.168.150.51
mount 192.168.150.51:/praveshsailor /mnt
-----------------------------
# Port Number:2049
------------------
# Required RPMS:
----------------
system-config-nfs-1.3.23-1.el5
nfs-utils-lib-1.0.8-7.2
nfs-utils-1.0.9-16.el5
# Configuration Files:
----------------------
/etc/exports
# Required Services and Daemons:
--------------------------------
nfs
# Configuration Steps:
----------------------
mkdir /viraj
# Create some files in the /praveshsailor
touch file{1,2,3,4,5}
vi /etc/exports
/praveshsailor *(rw,sync)
:wq
exportfs -a
exportfs -v
service nfs restart
chkconfig nfs on
# Client Side:
--------------
showmount -e 192.168.150.51
mount 192.168.150.51:/praveshsailor /mnt
Comments