mysql自动备份

    1. #!/bin/bash
    2. MyUSER="SET-MYSQL-USER-NAME"     # USERNAME
    3. MyPASS="SET-PASSWORD"       # PASSWORD
    4. MyHOST="localhost"          # Hostname
    5. # Linux bin paths, change this if it can not be autodetected via which command
    6. MYSQL="$(which mysql)"
    7. MYSQLDUMP="$(which mysqldump)"
    8. CHOWN="$(which chown)"
    9. CHMOD="$(which chmod)"
    10. GZIP="$(which gzip)"
    11. # Backup Dest directory, change this if you have someother location
    12. DEST="/backup"
    13. # Main directory where backup will be stored
    14. MBD="$DEST/mysql"
    15. # Get hostname
    16. HOST="$(hostname)"
    17. # Get data in dd-mm-yyyy format
    18. NOW="$(date +"%d-%m-%Y")"
    19. # File to store current backup file
    20. FILE=""
    21. # Store list of databases
    22. DBS=""
    23. # DO NOT BACKUP these databases
    24. IGGY="test"
    25. [ ! -d $MBD ] && mkdir -p $MBD || :
    26. # Only root can access it!
    27. $CHOWN 0.0 -R $DEST
    28. $CHMOD 0600 $DEST
    29. # Get all database list first
    30. DBS="$($MYSQL -u $MyUSER -h $MyHOST -p$MyPASS -Bse 'show databases')"
    31. for db in $DBS
    32. do
    33. skipdb=-1
    34. if [ "$IGGY" != "" ];
    35. then
    36. for i in $IGGY
    37. do
    38. [ "$db" == "$i" ] && skipdb=1 || :
    39. done
    40. fi
    41. if [ "$skipdb" == "-1" ] ; then
    42. FILE="$MBD/$db.$HOST.$NOW.gz"
    43. # do all inone job in pipe,
    44. # connect to mysql using mysqldump for select mysql database
    45. # and pipe it out to gz file in backup dir :)
    46. $MYSQLDUMP -u $MyUSER -h $MyHOST -p$MyPASS $db | $GZIP -9 > $FILE
    47. fi
    48. done
上一篇:控件(文本类): RichTextBlock, RichTextBlockOverflow, RichEditBox


下一篇:浅谈Storm流式处理框架(转)