You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- #!/bin/bash
-
- # Set the database credentials
- DB_USER="root"
- DB_PASS="root@123"
- DB_NAME="triq_demo"
-
- # Set the backup directory
- BACKUP_DIR="/mysql_backup"
-
- # Set the backup filename format
- DATE=$(date +"%Y-%m-%d_%H-%M-%S")
- FILENAME="${DB_NAME}_${DATE}"
-
- # Create the backup
- mysqldump -u $DB_USER -p$DB_PASS $DB_NAME > $BACKUP_DIR/$FILENAME
|