byerlikaya / SqlBackupToS3

It backs up the MSSQL database you specify, compresses it into zip and backs it up to aws s3.

Home Page:https://www.nuget.org/packages/SqlBackupToS3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sql Backup to Amazon S3

Backup the database, zip it and upload it to s3.

GitHub Workflow Status (with event) SqlBackupToS3 Nuget SqlBackupToS3 Nuget

Setup in just 2 steps.

  1. Install SqlBackupToS3 NuGet package from here.
PM> Install-Package SqlBackupToS3
  1. Add services.AddSqlBackup();
builder.Services.AddSqlBackup(x =>
{
    x.ConnectionString = "YOUR_CONNECTION_STRING";
    x.BackupFolderPath = "BACKUP_FOLDER_PATH";
    x.DailyRepeat = 2;
    x.DeleteAfterZip = true;
    x.DebugMode = false;
    x.BackupOnStartup = false;
    x.AmazonCredentialOptions = new AmazonCredentialOptions
    {
        AccessKey = "YOUR_ACCESS_KEY",
        SecretKey = "YOUR_SECRET_KEY"
    };
    x.AmazonS3Options = new AmazonS3Options
    {
        BucketName = "YOUR_BUCKET_NAME",
        Region = "eu-central-1"
    };
});

DebugMode : Database backups on the remote server will give an error because the specified backup file cannot be found on your local computer. If you are not working on the local database, you should set it to "true". In short, it should be set to "false" if it is an application running on the same server as the database being backed up.

Give a star ⭐, fork and stay tuned.

About

It backs up the MSSQL database you specify, compresses it into zip and backs it up to aws s3.

https://www.nuget.org/packages/SqlBackupToS3

License:MIT License


Languages

Language:C# 100.0%