2개 답변
- 최신
- 최다 투표
- 가장 많은 댓글
1
It's possible that you are trying to create the directory as a non-root user, while /mnt/efs/fs1 is owned by root.
Please see https://docs.aws.amazon.com/efs/latest/ug/accessing-fs-nfs-permissions.html - you can either change the permissions on your directory as root (with sudo) or use an access point.
1
If you want to create a folder inside the EFS volume that is owned by a user on the EC2 instance, you could do the following (assuming you are logged in as ec2-user):
- cd /mnt/efs/fs1
- sudo mkdir your-folder-name
- chown -R ec2-user:ec2-user your-folder-name
This will use root privileges to create new folder within the EFS volume and then assign ownership to another user, in this case the default ec2-user that you will get when you create an EC2 instance using Amazon Linux 2.
답변함 3년 전
관련 콘텐츠
- AWS 공식업데이트됨 2년 전
need to preface chown with sudo as well