CentOS下NFS网络文件系统服务的部署 - 图1
    NFS(Network File System)网络文件系统服务可以将远程Linux系统上的文件共享资源挂载到本地主机的目录上,从而使得本地主机(Linux客户端)基于TCP/IP协议,像使用本地主机上的资源那样读写远程Linux系统上的共享文件

    如下拓扑图所示
    CentOS下NFS网络文件系统服务的部署 - 图2
    1)IP:192.168.31.160 CentOS6.9服务器NFS Server服务端

    2)IP:192.168.31.161 CentOS6.9服务器NFS Client客户端
    3)IP:192.168.31.51 Win7PC一台
    CentOS下NFS服务器部署步骤如下
    一、NFS Server端配置
    1)yum方式安装nfs-util和rpcbind服务
    [root@localhost ~]# yum install nfs-utils rpcbind -y
    image.png
    2)vi编辑NFS服务器端配置文件/etc/exports
    /data/nfs_sharefiles 192.168.31.0/24(rw,sync,no_root_squash)
    image.png
    参数说明:
    /data/nfs_sharefiles #NFS共享目录
    192.168.31.0/24 #允许这个网段内的IP地址访问共享目录
    rw #读取写入权限
    sync #数据实时同步
    用于配置NFS服务程序配置文件的参数说明

    参数 作用
    ro 只读
    rw 读写
    root_squash 当NFS客户端以root管理员访问时,映射为NFS服务器的匿名用户
    no_root_squash 当NFS客户端以root管理员访问时,映射为NFS服务器的root管理员
    all_squash 无论NFS客户端使用什么账户访问,均映射为NFS服务器的匿名用户
    sync 同时将数据写入到内存与硬盘中,保证不丢失数据
    async 优先将数据保存到内存,然后再写入硬盘;这样效率更高,但可能会丢失数据

    3)创建共享目录
    [root@localhost ~]# mkdir -p /data/nfs_sharefiles
    [root@localhost ~]# touch /data/nfs_sharefiles/share.txt
    [root@localhost ~]# exportfs -rv
    exportfs -rv重新加载NFS配置或者service nfs reload 用于生产环境,不需要重启restart nfs服务
    CentOS下NFS网络文件系统服务的部署 - 图5
    4)启动nfs服务和rpcbind服务并设置为开机自启动
    [root@localhost ~]# /etc/init.d/rpcbind start
    [root@localhost ~]# /etc/init.d/nfs start
    需要先启动rpcbind服务再启动nfs服务
    [root@localhost ~]# chkconfig rpcbind on
    [root@localhost ~]# chkconfig nfs on
    CentOS下NFS网络文件系统服务的部署 - 图6
    5)[root@localhost ~]# showmount -e localhost
    查看NFS服务器本地挂载情况
    [root@localhost ~]# cat /var/lib/nfs/etab
    查看NFS Server配置文件的参数,含默认加载的参数
    CentOS下NFS网络文件系统服务的部署 - 图7
    二、NFS Client端配置
    1)NFS Client端只需启动rpcbind服务,不必启动NFS服务
    [root@NFSClient ~]# yum install rpcbind nfs-utils -y
    [root@NFSClient ~]# chkconfig rpcbind on
    [root@NFSClient ~]# chkconfig rpcbind —list
    [root@NFSClient ~]# service rpcbind start
    [root@NFSClient ~]# showmount -e 192.168.31.160
    CentOS下NFS网络文件系统服务的部署 - 图8
    2)挂载NFS共享目录后并测试读写
    [root@NFSClient ~]# mkdir -p /mnt/nfs_share
    [root@NFSClient ~]# mount -t nfs 192.168.31.160:/data/nfs_sharefiles /mnt/nfs_share/
    image.png
    mount命令所有挂载情况可以看到nfs挂载的详细信息
    image.png
    3)将挂载加入开机自启动文件/etc/rc.local
    [root@NFSClient ~]# echo “mount -t nfs 192.168.31.160:/data/nfs_sharefiles /mnt/nfs_share/“ >>/etc/rc.local
    image.png
    4)客户端服务器重启后验证是否会开机自动挂载NFS共享目录
    CentOS下NFS网络文件系统服务的部署 - 图12