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

nfs搭建

时间:2018-09-12 18:09:46      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:service   dir   验证   tar   写入   star   共享   perm   yum   

搭建nfs服务器

  1. 查看是否安装NFS
    rpm -qa | grep nfs

rpm -qa | grep rpcbind

如未安需先安装服务
yum install -y nfs-utils rpcbind

  1. 服务器配置
    创建共享目录
    mkdir /data/xu
    赋予权限
    chmod 777 /data/xu/
    编辑配置文件
    vim /etc/exports
    内容:/data/xu 192.168.1.130/24(rw,no_root_squash,no_all_squash,sync)
    配置生效
    exportfs -r
    开放nfs端口
    firewall-cmd --permanent --add-service=nfs
    端口生效
    firewall-cmd –reload
    重启服务
    systemctl start nfs
    systemctl start rpcbind
  2. 客户端配置
    创建挂载目录
    mkdir /xu
    将服务器共享目录挂载到本地
    mount -t nfs 192.168.1.130:/data/xu/xu -o proto=tcp -o nolock
    检查挂载结果df -h
  3. 验证
    服务器编辑文件
    echo "gongxiang" > gongxiang.txt
    客户端查看

客户端写入
echo "23333" > /xu/gongxiang.txt
服务器查看

nfs搭建

标签:service   dir   验证   tar   写入   star   共享   perm   yum   

原文地址:http://blog.51cto.com/13956297/2174351

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