centos使用nfs共享服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos使用nfs共享服务器相关的知识,希望对你有一定的参考价值。

一、简介

   NFS(Network File System/网络文件系统):

      1)、设置Linux系统之间的文件共享(Linux与Windows中间文件共享采用SAMBA服务);

2)、NFS只是一种文件系统,本身没有传输功能,是基于RPC协议实现的,才能达到两个Linux系统之间的文件目录共享;

3)、NFS为C/S架构;


二、依赖的服务和软件包

   1、检查下列两个包是否已经安装(默认安装完RHEL或者CentOS系统,就已经安装了这两个软件包) 

     rpm -qa nfs-utils rpcbind

     或

     rpm -qa|grep "nfs-utils|rpcbind"[效率不如前者]

   2、如果没有安装,现在就安装它们
     yum install nfs-utils rpcbind -y

三.启动

     /etc/init.d/rpcbind start

     /etc/init.d/nfs start

     注:

     1./etc/init.d/nfs reload 相当于exports -r 

      rpcinfo -p localhost 可见rpc的信息

      

四.配置

     vi /etc/exports

     /data 192.168.120.*(rw,sync) 

     cat /var/lib/nfs/etab

     anonuid=65534,anongid=65534

     nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin

     查看配置:

     showmount -e 127.0.0.1

五.运行

     mount -t nfs 192.168.120.143:/data /mnt

六.在其他客户端上运行rpcbind

     mount -t nfs 192.168.120.143:/data /mnt

七.在客户端和服务器端

     vi /etc/rc.local

     >/etc/udev/rules.d/70-persistent-net.rules

     /etc/init.d/rpcbind start

     /etc/init.d/nfs start

     mount -t nfs 192.168.120.143:/data /mnt

     

      

      

   


以上是关于centos使用nfs共享服务器的主要内容,如果未能解决你的问题,请参考以下文章

centos7配置nfs共享存储服务

CentOS 7集群间实现NFS文件共享

NFS文件共享服务搭建(ubuntu-centos)

Linux Centos7 --- nfs共享存储空间

Centos7 NFS共享储存服务详解

Centos6通过NFS文件服务器实现文件共享