Linux Suse 11系统下的NFS配置

时间:2023-01-16 08:39:37

版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明
http://blog.csdn.net/wenshuangzhu/article/details/44079473

1.Server端

1.1 检查是否已经安装NFS服务

检查是否安装nfs-kernel-server:
vms240:~ # rpm -aq|grep nfs
nfs-client-1.2.1-2.6.6
yast2-nfs-common-2.17.7-1.1.2
nfs-kernel-server-1.2.1-2.6.6
nfs-doc-1.2.1-2.6.6
yast2-nfs-server-2.17.7-1.1.2
limal-nfs-server-perl-1.5.3-0.2.11
nfsidmap-0.20-1.20
limal-nfs-server-1.5.3-0.2.11
yast2-nfs-client-2.17.12-0.1.81

若没有安装则插入SUSE安装盘,运行yast2安装即可,比较简单。

1.2 启动NFS服务

vms240:~ # service nfsserver start
Starting kernel based NFS server: idmapd mountd statdnfsd sm-notify           done

1.3 查看NFS运行状态

vms240:~ # service nfsserver status
Checking for kernel based NFS server: idmapd                        running
 mountd                                                             running
 statd                                                              running
 nfsd                                                               running

1.4 查看已有的共享目录

vms240:~ # showmount -e
Export list for vms240:

1.5 设置共享目录

vms240:~ # vi /etc/exports
 
# See the exports(5) manpage for a description of thesyntax of this file.
# This file contains a list of all directories thatare to be exported to
# other computers via NFS (Network File System).
# This file used by rpc.nfsd and rpc.mountd. Seetheir manpages for details
# on how make changes in this file effective.
/home/xws *(rw,sync,no_root_squash,no_all_squash,no_subtree_check)
 
注释:
/home/xws 是你想共享出去的目录。
* 表示可以访问的IP范围,这里是所有ip地址都可以访问,当然也可以写上具体的IP地址或者hostname来代替。
rw可读写权限。
sync同步写入存储器。
no_all_squash 保留共享文件的UID和GID(默认)。
no_root_squash 表示root用户具有根目录的完全管理访问权限。
no_subtree_check不检测子目录,提高性能。
上面的配置比较经典,客户端访问的时候直接登入不用验证。


1.6 重新加载NFS

vms240:~ # exportfs -rv
exporting *:/home/xws

1.7 配置NFS开机自启动

vms240:~ # chkconfig nfsserver on
vms240:~ # chkconfig --list nfsserver

nfsserver                 0:off  1:off 2:off 3:on   4:off 5:on   6:off



2. Client端

2.1 检查是否已经安装RPCBIND服务

检查客户端是否已安装rpcbind包(SUSE11默认安装此服务,并且开机自启动):
vms216:~ # rpm -aq|grep rpcbind
rpcbind-0.1.6+git20080930-6.15

2.2 扫瞄可以使用的NFS共享目录

vms216:~ # showmount -e 172.16.54.240
Export list for 172.16.54.240:
/home/xws *

2.3 创建挂载点目录

vms216:~ # mkdir /home/test

2.4 利用mount指令来挂载共享目录

到客户端机器的/home/test目录:
vms216:~ # mount -t nfs 172.16.54.240:/home/xws /home/test
 
挂载成功后,只要进入/home/test目录,就等于到了172.16.54.240的/home/xws共享目录中。

2.5 查看已挂载的NFS共享盘

vms216:~ # df -h
Filesystem           Size  Used Avail Use% Mounted on
/dev/sda1            9.9G  381M  9.0G  4% /
devtmpfs             1.6G  136K  1.6G  1% /dev
tmpfs                 1.6G     0 1.6G   0% /dev/shm
/dev/sda2           1004M   43M  910M  5% /boot
/dev/sda10           101G   27G   69G 28% /home
/dev/sda9             50G   27G   20G 58% /home/database
/dev/sda5             20G  3.3G   16G 18% /opt
/dev/sda7            9.9G  264M  9.1G  3% /tmp
/dev/sda6             15G  3.1G   11G 23% /usr
/dev/sda3             15G  333M   14G  3% /var
172.16.54.240:/home/xws
                      101G   25G  71G  26% /home/test

                      
2.6 配置开机自动挂载

vms216:~ # vi /etc/init.d/after.local
 
增加下面一行内容并保存文件:
mount -t nfs 172.16.54.240:/home/xws /home/test
 
修改文件权限为可执行:
vms216:~ # chmod +x /etc/init.d/after.local

2.7 卸载NFS盘

vms216:~ # umount /home/test