美文网首页
centos7 通过搭建nfs

centos7 通过搭建nfs

作者: 无处安放的躁动 | 来源:发表于2019-10-31 14:14 被阅读0次

    前言

    如何通过使用存远程存储

    部署NFS

    • 需要先关闭防火墙,selinux

    通过yum 安装nfs

    # 安装
    yum -y  install nfs-utils
    # 启动
    systemctl start nfs-service
    # 开机自启动
    systemctl enable nfs-service
    

    配置nfs

    # 创建共享挂载目录
    mkdir /mnt/jamestest
    # 修改属组以及权限
    chown nfsnobody:nfsnobody /mnt/jamestest/
    chmod 755 /mnt/jamestest/
    
    # 配置nfs
    vim /etc/exports
    /mnt/jamestest/   k8smaster(rw,sync)
    # 刷新配置或者重启服务
    exportfs  -a
    systemctl restart nfs-service
    

    查看nfs

    showmount -e localhost
    

    参考文献

    非常不错的文章

    相关文章

      网友评论

          本文标题:centos7 通过搭建nfs

          本文链接:https://www.haomeiwen.com/subject/uvqtbctx.html