Copying Files from Ec2 to S3

0

I am copying files from the ec2 server(Ubuntu) to s3 using the command- aws s3 sync --no-guess-mime-type "/opt/mydir/" "s3://copy-test". Files are getting copied but the permissions are not getting preserved like root gets changed to user when I fetch these files to another ec2 instance. Am I missing something or the permissions can't be preserved if I use the CLI commands?

Thanks.

shyam
demandé il y a 9 mois393 vues
2 réponses
1

The other answer is correct (S3 isn't a Linux filesystem) and the AWS-supplied CLI won't do what you want - but there is a twist here.

Metadata can be stored with objects in S3. That metadata could include (say) the original file owner and then that could be restored when the object is copied back from S3. This requires the tool doing the copying to take care of that for you.

You might look at s3cmd as an example but there are probably others out there too.

profile pictureAWS
EXPERT
répondu il y a 9 mois
profile picture
EXPERT
Steve_M
vérifié il y a 9 mois
  • Thanks for the reply

0

S3 doesn't store "Linux" permissions for object. Consider using EFS instead. See some discussion on this topic under: https://www.reddit.com/r/aws/comments/d8lw4z/how_to_preserve_file_permissions_on_a_file_when/

répondu il y a 9 mois
  • Thanks for the reply

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions