我在 BlueData 4.0 上创建了一个 MLOPS 项目并安装了 Project Repo (NFS) 文件夹。我在 Centos 7x 上创建了 NFS 服务,如下所示:
sudo yum -y install nfs-utils
sudo mkdir /nfsroot
echo '/nfsroot *(rw,no_root_squash,no_subtree_check)' | sudo tee /etc/exports
sudo exportfs -r
sudo systemctl enable nfs-server.service
sudo systemctl start nfs-server.service
我现在正在尝试访问存储在 NFS 项目存储库中的数据集,但收到以下错误:
PermissionError: [Errno 13] Permission denied: '/bd-fs-mnt/path/data.csv'
知道如何解决这个问题吗?