This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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. |