美文网首页
nfs挂载后无法创建文件

nfs挂载后无法创建文件

作者: 秋刀鱼杂记 | 来源:发表于2017-12-22 15:10 被阅读0次

    刚做个openshift的pv时候,发现nfs挂载的磁盘无法创建文件。提示Permission denied

    1) 查看服务端设置的文件

    # cat /etc/exports

    /centos-repo (rw,sync,no_root_squash)

    服务端的配置是有读写权限的。

    2)再看客户端的挂载命令:

    # mount -t nfs repo.example.com:/centos-repo /mnt/

    3) 客户端挂载的时候,增加-o rw参数重新挂载

    # umount 

    # mount -o rw -t nfs repo.example.com:/centos-repo /mnt/

    4)再次尝试创建文件,成功。

    # mkdir test

    # ls

    test

    相关文章

      网友评论

          本文标题:nfs挂载后无法创建文件

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