码迷,mamicode.com
首页 > 其他好文 > 详细

centos7安装nfs服务器

时间:2018-02-05 10:41:55      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:centos7   systemctl   -o   安装   col   star   export   bin   防火墙   

一、服务器配置:

  1. 安装软件:
    yum -y install nfs-utils rpcbind
  2. 更改配置文件:
    vim  /etc/exports  #添加
    /home/lee/nfs 192.168.8.*(rw,async,no_root_squash)
  3. 更改目录权限:
    chmod  -R  a+w  /home/lee/nfs
  4. 启动服务:
    systemctl  start  rpcbind
    systemctl  start  nfs
  5. 开启防火墙端口:
    #rpcbind的端口
    iptables  -I  INPUT  -p  udp  --dport  111  -j  ACCEPT
    iptables  -I  INPUT  -p  tcp  --dport  111  -j  ACCEPT
    #nfs的端口
    iptables  -I  INPUT  -p  udp  --dport  2049  -j  ACCEPT
    iptables  -I  INPUT  -p  tcp  --dport  2049  -j  ACCEPT

    二、客户端配置:

  6. 安装软件:
    yum  -y  install  rpcbind
  7. 查看服务端状态:
    showmount  -e  192.168.8.81

    技术分享图片

  8. 挂载:
    a. 手动挂载:
    mount  192.168.8.81:/home/lee/nfs  /home/lee/nfs

    b. 开机自动挂载:

    echo  "192.168.8.81:/home/lee/nfs  /home/lee/nfs  nfs  defaults  0  0"  >>  /etc/fstab

    三、测试:

  9. 客户端:
    touch  /home/lee/nfs/test.txt
  10. 服务端:
    ll  /home/lee

    技术分享图片

centos7安装nfs服务器

标签:centos7   systemctl   -o   安装   col   star   export   bin   防火墙   

原文地址:http://blog.51cto.com/12173069/2068815

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!