zoukankan      html  css  js  c++  java
  • centos6.5单机配置NFS

    操作系统:centos6.5

    服务端、客户端:26.129

    1、安装rpcbind和nfs-utils

    可以用以下命令查看系统是否已经安装
    rpm -qa|grep rpcbind
    rpm -qa|grep nfs

    2、设置共享目录

    打开/etc/exports设置
    [root@bogon scripts]# cat /etc/exports
    /sharestore *(rw,sync,no_root_squash)
    /home/informix/scripts *(rw,sync,no_root_squash)

    3、重启服务器

    service rpcbind restart
    service nfs-utils restart
    image

    4、在客户端挂载

    客户端也需要安装rpcbind 和 nfs-utils, 启动这两个服务
    mount -t nfs 10.10.14.52:/mnt/share /mnt

  • 相关阅读:
    wf(三)
    WF(二)
    WF4.0入门(一)
    枚举
    函数和立即函数
    对象字面量
    Break和continue语句
    对象
    循环语句
    条件分支语句(SWICH语句)
  • 原文地址:https://www.cnblogs.com/lu28/p/14867705.html
Copyright © 2011-2022 走看看