Skip to content

负载均衡文件共享

Yiming Song edited this page Aug 4, 2020 · 1 revision

一,环境介绍 本实验使用了两台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开机自动启动,实验完成。
Clone this wiki locally