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 年前
相關內容
- 已提問 1 年前
- 已提問 1 年前
- AWS 官方已更新 3 年前
- AWS 官方已更新 2 個月前
- AWS 官方已更新 2 年前
need to preface chown with sudo as well