Linux搭建NFS

  1. 在所有的节点执行语句

    1
    yum -y install nfs-utils rpcbind
  2. 在服务端执行以下语句

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    cat <<EOF >> /etc/exports
    /data 10.160.22.0/24(rw,all_squash,anonuid=0,anongid=0)
    EOF
    # 使配置生效
    exportfs -rv
    service rpcbind start
    service nfs start
    service rpcbind status
    service nfs status
    # 看一下是否成功
    showmount -e
  3. 在客户端执行挂载

    1
    2
    mkdir /data
    mount -t nfs -o nolock,nfsvers=3,vers=3 10.160.22.14:/data /data