zoukankan      html  css  js  c++  java
  • Centos7下搭建NFS服务器与连接详解

    一,环境介绍
        本实验使用了两台centos7虚拟机,其中     
        服务器:192.168.1.188
        客户端:192.168.1.189

    二,实验步骤
        192.168.1.188上执行(服务器端)
                1,使用yum -y install nfs-utils     因为centos7自带了rpcbind,所以不用安装rpc服务,rpc监听在111端口,可以使用         ss -tnulp | grep 111查看rpc服务是否自动启动,如果没有启动,就systemctl start rpcbind 启动rpc服务。rpc在nfs服务器搭建过程中至关重要,因为rpc能够获得nfs服务器端的端口号等信息,nfs服务器端通过rpc获得这些信息后才能连接nfs服务器端。

    2,使用 rpm -qa nfs-utils 查看是否安装成功

    3,编辑/etc/exports ,添加以下内容

          /data    192.168.1.0/24(rw,async)

     4,启动nfs服务,systemctl start nfs ,启动后 使用rpcinfo -p 192.168.1.188 查看,如图所示

       

    5,使用showmount -e localhost

    6 ,创建/data目录添加文件,更改权限(很重要!!!!!)
        mkdir /data 
        touch /data/1.txt

        echo "hello nfs" >> /data/1.txt

      chown -R nfsnobody.nfsnobody /data

      在192.168.1.189上执行(客户端)

     1,yum -y intall nfs-utils (客户端上不需要启动nfs服务,只是为了使用showmount工具)

     2,检测rpc是否启动,

     3,使用showmount -e 192.168.1.188查看

      4,挂载至本地/mnt目录

                        mount -t nfs 192.168.1.188:/data /mnt

                       1.txt可读写 。nfs挂载完成。

    接下来在服务器端执行

                    systemctl enable nfs-server.server

                     systemctl enable rpcbind

                    让nfs,rpcbind开机自动启动,实验完成。

  • 相关阅读:
    函数式宏定义与普通函数
    linux之sort用法
    HDU 4390 Number Sequence 容斥原理
    HDU 4407 Sum 容斥原理
    HDU 4059 The Boss on Mars 容斥原理
    UVA12653 Buses
    UVA 12651 Triangles
    UVA 10892
    HDU 4292 Food
    HDU 4288 Coder
  • 原文地址:https://www.cnblogs.com/canflyfish/p/11385613.html
Copyright © 2011-2022 走看看