How to Enable S3 Versioning and Manage File Versioning

Introduction

Imagine you accidentally delete a critical file in your S3 bucket. Without versioning, it’s gone forever. With versioning enabled, you can restore the file in seconds. In this article, we'll learn how to enable versioning and manage file versions in Amazon S3 using an EC2 instance.

Why is this useful?

  • If you accidentally delete or overwrite a file, you can restore a previous version.
  • You can track changes made to important files.

1. Enable Versioning on an S3 Bucket

  • Select your S3 bucket
  • Click on Properties

2. Upload a File to the S3 Bucket from EC2

  • To upload a file to an S3 bucket from an EC2 instance, you first need to connect to your EC2 instance.
    ssh -i "C:\Users\ATUL GUPTA\Downloads\rocky-999.pem" ubuntu@ec2-54-174-255-146.compute-1.amazonaws.com

    Bash

    Copy

  • You can create a simple text file by using the echo command. This file contains a string of text and is saved as myfile.txt.
    echo "This is my first file version" > myfile.txt

    Bash

    Copy

    New File
  • The AWS s3 cp command is used to copy the file from your EC2 instance to your S3 bucket. Replace your bucket name with the actual name of your S3 bucket.
    aws s3 cp myfile.txt s3://my-puma-bucket05/

    Bash

    Copy

    Uploaded file

3. Upload a New Version of the File

  • First, we will modify the existing myfile.txt by updating its content. You can use the echo command again, this time with the updated text.
    echo "This is my updated file version" > myfile.txt

    Bash

    Copy

    New version
  • Now, S3 stores two versions of the file.

4. View File Versions in S3

To see all the versions of a specific file in your S3 bucket, you can use the aws s3api list-object-versions command. This will list all versions of the file, including their version IDs.

aws s3api list-object-versions --bucket my-puma-bucket05 --prefix myfile.txt

Bash

Copy

Difference

When you run this command, it will return a list of all versions of myfile.txt in your my-puma-bucket05 bucket, along with details like version IDs and the last modified time.

5. Restore or Delete a Specific Version

  • To delete a specific version of a file, first retrieve its version ID.
  • Use the aws s3api delete-object command to delete the file version by specifying the --version-id. Replace <version-id> with the actual version ID you want to delete.
    aws s3api delete-object --bucket my-puma-bucket05 --key myfile.txt --version-id z96ncmxYauLRgd_.jTlx6h0aGIIMR5Ch

    Bash

    Copy

    Delete second version

Explanation

  • --bucket my-puma-bucket05: Specifies the name of your S3 bucket.
  • --key myfile.txt: Specifies the file name in the S3 bucket.
  • --version-id z96ncmxYauLRgd_.jTlx6h0aGIIMR5Ch: Specify the version ID of the file you want to delete (the second version from your output).

Ebook Download
View all
Learn
View all
NA 5.4k309.3k

I am Karthik, Proud Indian | Microsoft MCSA| Microsoft MCP |Microsoft C# Specialist. I have Hands on Experience in Asp.Net, C#, SQL,JavaScri... Know more

http://www.learnandshare-karthik.com/

View All Comments