Welcome to Centmin Mod Community
Become a Member

Amazon AWS Script to sync a folder to Amazon S3

Discussion in 'System Administration' started by pamamolf, Feb 13, 2018.

  1. pamamolf

    pamamolf Well-Known Member

    4,125
    429
    83
    May 31, 2014
    Ratings:
    +841
    Local Time:
    8:42 AM
    Nginx-1.29.x
    MariaDB 10.6.x
    Hello


    I am looking for a script to sync my /backup/ folder to Amazon S3.

    Thank you
     
  2. eva2000

    eva2000 Administrator Staff Member

    58,905
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    3:42 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
  3. BoostN

    BoostN Active Member

    135
    27
    28
    Aug 19, 2014
    Ratings:
    +42
    Local Time:
    12:42 AM
    1.13.6
    10.0.34
    Here is what I wrote:

    Code:
    #!/bin/bash
    DESDIR=/home/nginx/domains/mydomain.com/backup/
    S3DIR="s3://mylocation/mysite/"
    
    # RSYNC to AWS S3
    s3cmd sync --skip-existing $DESDIR $S3DIR
    Not sure if it's right, but it's been working for over a year. I have a 10 day retention policy setup on the S3 folder itself.
     
  4. eva2000

    eva2000 Administrator Staff Member

    58,905
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    3:42 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
  5. pamamolf

    pamamolf Well-Known Member

    4,125
    429
    83
    May 31, 2014
    Ratings:
    +841
    Local Time:
    8:42 AM
    Nginx-1.29.x
    MariaDB 10.6.x
    I am using at the moment the "put" parameter :)
     
  6. Matt

    Matt Well-Known Member

    932
    415
    63
    May 25, 2014
    Rotherham, UK
    Ratings:
    +671
    Local Time:
    6:42 AM
    1.5.15
    MariaDB 10.2
    Also, be mindful of the costs involved with syncing whole directories with S3, the costs can soon mount up, as they bill for each request type.

    upload_2018-2-15_11-0-20.png