CentOS MySQL timed backup shell script sharing _linux Shell

Source: Internet
Author: User

1. Backup statement

Copy Code code as follows:

#/usr/local/mysql/bin/mysqldump-utest-ptest Test--socket=/tmp/mysql.3306.sock >/usr/local/mysql_backup/3306/ test-' Date +%y%m%d '. sql.gz

Statement Description:

/usr/local/mysql/bin/mysqldump:mysql installation directory
-utest: Divided into two pieces, one for-u piece for test, where-U is the user name, and test is the current user name
-ptest: Divided into two pieces, one for-u piece for test, where-U is the password, test is represented as the current password
--socket: Which port to back up, see/tmp below which one fits
Test: Which database to back up
: Which folder to back up, and named after the database name-the current date

2. Write the statement into a script

3. Edit/etc/crontab

Copy Code code as follows:

# Vim/etc/crontab

4, add the following

Copy Code code as follows:

3 * * * root/home/mysql/3306/backup

Note: Backup for the script you just wrote
Indicates that a backup is performed 3 o'clock daily

5. Reboot crontab

Copy Code code as follows:

#/etc/rc.d/init.d/crond Restart

Related Article

Contact Us

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

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.