Linux regular backup mysql database

Source: Internet
Author: User


Using crontab, the system regularly backs up mysql Databases every day and uses the system crontab to regularly execute backup files. The backup results are saved by date for backup purposes.
1. Create the path to save the backup file/mysqldata # mkdir/mysqldata www.2cto.com 2. Create the/usr/sbin/bakmysql file # vi/usr/sbin/bakmysql and enter rq = 'date + % Y % m % d 'tar zcvf/mysqldata/mysql1_rq.tar.gz/var/lib/mysql or write rq = 'date + % Y % m % d' mysqldump -- all-databases-u root -p password>/mysqldata/mysql $ rq. SQL/var/lib/mysql is the directory of your database files. Some users are/usr/local/mysql/data. Each user may be different./mysqldata/indicates the directory where the backup files are saved, this individual can also do it according to their own requirements. 3. Modify file attributes, make it executable # chmod + x/usr/sbin/bakmysql 4. Modify/etc/crontab # vi/etc/crontab and add www.2cto.com 01 3 *** root/usr/sbin /bakmysql indicates that the backup is performed at three o'clock every day. 5. Restart crond #/etc/rc. d/init. d/crond restart is complete. In this way, you can see this file "mysql20040619.tar.gz" in "/mysqldata" every day. You can download it directly. Author: xiahuawuyu

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.