MySQL database Regular automatic backup script, mysql database script

Source: Internet
Author: User

MySQL database Regular automatic backup script, mysql database script
The most important thing for a Web system is the security and integrity of the database.
It is very important to back up data regularly. Do not be lazy on this issue. If your important data is lost, it will make you cry.

Export table structure and data mysqldump-uroot-pmypassword -- databases fansunion -- result-file =/var/www/backup/fansunion-table-and-data. SQL
Export only the table structure mysqldump-uroot-pmypassword -- databases fansunion -- no-data -- result-file =/var/www/backup/fansunion-table. SQL
Export data only mysqldump-t-uroot-pmypassword -- databases fansunion -- result-file =/var/www/backup/fansunion-table-and-data. SQL
Import Data source/var/www/backup/fansunion-table. SQL

Regular backup use crontab regular backup mysqlcrontab-e 17 every day, execute the backup script 0 17 ***/var/www/autobackup-mysql.sh (online said, can be placed by the user, but try again, no, '0 17 *** root/var/www/autobackup-mysql.sh ')
Autobackup-mysql.shnow = 'date "+ % Y % m % d % H % M % S" 'file = "/var/www/backup/fansunion-table-data-" $ now". SQL "/usr/local/mysql/bin/mysqldump-uroot-pmypassword -- databases fansunion-t> $ file
Remember, the full path must be used for mysqldump. References: http://bbs.chinaunix.net/thread-512166-1-1.html
0 17 ***/root/backup/autobackup-mysql.sh

First: http://fansunion.cn/article/detail/58.html

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.