刚做个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
网友评论