How to automatically back up mysql databases on a daily basis in Linux
Source: Internet
Author: User
/Usr/bin: mysql installation directory
Create a backup Folder:
Mkdir mysql_data_bak
Create a script file:
Touch autobackupmysql. sh
Open a file
Vi autobackupmysql. sh
Add the following content to the script:
Filename = 'date + % Y % m % d'
/Usr/bin/mysqldump-opt mysql-u root-proot | gzip>/mysql_data_bak/name1_filename.gz
Note that
General:
**************************************** ******************
Open the automatic execution File
Vi/etc/crontab
Add the following content to etc to automatically execute the task.
01 15 *** root/mysql_data_bak/autobackupmysql
**************************************** ******************
Redhat method:
The crontab of Redhat calls four directories by time (/etc/cron. hourly: hourly;/etc/cron. daily: Every
Days;/etc/cron. weekly: weekly;/etc/cron. monthly: monthly.
In Redhat, you only need to copy the edited script to the corresponding directory.
Cp/mysql_data_bak/autobackupmysql etc/cron. daily
Restart etc
/Etc/rc. d/init. d/crond restart
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service