저는 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 s
tart nfs-server.service
이제 NFS Project Repo에 저장된 데이터 세트에 접근하려고 하는데, 다음과 같은 오류가 발생합니다:
PermissionError: [Errno 13] Permission denied: ‘/bd-fs-mnt/path/data.csv’
어떻게 해결할 수 있을까요?