Skip to content

Instantly share code, notes, and snippets.

View mcucen's full-sized avatar

Mücahit Cücen mcucen

View GitHub Profile
@mcucen
mcucen / mysql_minio_backup.sh
Created February 29, 2024 14:30
Backup MySQL data to Minio
#!/bin/bash
################################
# MySQL Backup to Minio Server #
################################
# We will use timestamp to create unique filenames. Also it allows us to know backup time.
TIMESTAMP=$(date +%Y%m%d%H%M%S)
# Source MySQL server connection information.