• 数据库:ubantu下MySQL数据库备份方法


    1、编辑/etc/crontab文件设定定时任务,在制定时间执行backup_databases.sh

    vi /etc/crontab

    # /etc/crontab: system-wide crontab
    # Unlike any other crontab you don't have to run the `crontab'
    # command to install the new version when you edit this file
    # and files in /etc/cron.d. These files also have username fields,
    # that none of the other crontabs do.
    
    SHELL=/bin/sh
    PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
    
    # m h dom mon dow user  command
    17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
    25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
    47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
    52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
    
    25 9 * * *  root sh /home/autotest/backup_databases.sh

    2、编写backup_databases.sh,内容如下:

    #!/bin/bash
    # Set the backup filename and directory
    DATE=`date +%Y%m%d` # e.g 20101025
    FILENAME="trunk_development_database_$DATE.sql";
    BACKUPDIR="/backup/";
    # Database Credentials
    DBUSER="root";
    DBPWD="123qwe^&*";
    DBNAME="trunk_development";
    # Change to the root directory
    cd /
    # Where is our gzip tool for compression?
    # The -f parameter will make sure that gzip will
    # overwrite existing files
    GZIP="/bin/gzip -f";
    # Delete old backups older than 3 days
    find /backup/trunk_development_*gz -mtime +3 -exec rm {} ;
    # execute the database dump
    mysqldump --user=$DBUSER --password=$DBPWD --add-drop-table --databases $DBNAME > $BACKUPDIR$FILENAME
    # compress the database backup$GZIP $BACKUPDIR$FILENAME

    3、手动创建目录/backup

  • 相关阅读:
    java保留字
    12个不可不知的Sublime Text应用技巧和诀窍
    人生准则
    基于Android 的蓝牙A2DP 功能的实现
    蓝牙协议栈详解
    我的2015计划
    今日学习
    滤波器介绍
    STLINK V2安装使用详解
    javascript闭包
  • 原文地址:https://www.cnblogs.com/zs-note/p/4788120.html
Copyright © 2020-2023  润新知