MySQL backup script

Source: Internet
Author: User
Tags mysql backup

Requirements: Back up the MySQL database and upload the data backed up files to the FTP server
FTP Server IP Address: 192.168.6.9
FTP Server account/password: test/test123

1. Root user creates backup script path:

$ mkdir /opt/databak$ cd /opt/databak

2. Create a backup script:

#vi /opt/databak/dbbak.sh #!/bin/shtimedate=$(date +%Y%m%d%H%M%S) dbname=rootdbpasswd=1334babydbname=bwangbabydbhome=/opt/databakmysqldump -u$dbname -p$dbpasswd $babydbname >$babydbhome/$babydbname-$timedate.sqlsleep 5find $babydbhome/*.sql -mtime +30 -exec rm -rf {} \; cd $babydbhomeftp -v -n 192.168.6.9 >>$babydbname-$timedate.log << EOF      #将上传过程中产生的打印信息写到$babydbname-$timedate.log里面,后面判断是否成功要用user test test123binaryhashput $babydbname-$timedate.sql $babydbname-$timedate.sqlbyeEOF

Execute permissions on the dbbak.sh script and do a scheduled task
20 0 * * * /bin/sh /opt/databak/dbbak.sh

MySQL backup script

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.