构建nfs 服务器

构建nfs  服务器

首先准备两个虚拟机,一个为客户端。一个为服务器。

服务器:192.168.2.125

客户端:192.168.2.120

 在实验前,把防火墙(iptables),selinux,关闭否。

               首先在服务器上:

Selinux:getengorce   (查看状态)

         Enforcing为开启

         其他为默认关闭

防火墙(iptables):即时生效

             Service iptables start   (开启)

             Service iptables  stop   (关闭)

   #yum install �Cy nfs-utils       安装服务器包

   #vim  /etc/exports              配置文件编写

        /home   192.168.2.0/24 (rw,sync)

   #mount 192.168.2.120:/home   /ma   挂载到/ma 目录下 ,保证此目录存在

   #df �Ch                             查看挂载情况

#/etc/init.d/rpcbind              启动服务器前 先启动rpcbind服务器

#/etc/init.d/nfs start

服务器就 安装好了!

                 客服端:

#yum install�Cynfs-utils         安装包

#showmount �Ce 192.168.2.125      查看共享了哪些文件

#Mount �Ct nfs 192.168.2.125:/data/   /mama   在客户端挂载服务器的nfs

#df  - h                                     查看挂载情况

              这样NFS服务器就完全搭建好了!


你可能感兴趣的:(服务器,构建nfs)