共计 1148 个字符,预计需要花费 3 分钟才能阅读完成。
这期内容当中丸趣 TV 小编将会给大家带来有关 mysql 中怎么实现自动化备份,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
mysql 自动化备份方案
一、配置服务器
1、撰写自动备份脚本
mysql 备份主要包括热备和冷备,在此使用热备,也就是利用 mysqldump 导出 SQL 语句的方式进行备份
#vi /etc/mysqlback.sh
#!/bin/bash www.2cto.com
DB_NAME= luwenju // 需要备份的数据库
DB_USER= luwenju // 数据库用户名
DB_PASS= luwenju // 数据库密码
BIN_DIR= /usr/local/mysql/bin //mysql 的环境变量
BACK_DIR= /opt // 备份文件保存数据
DATE= `date +%Y%m%d`
$BIN_DIR/mysqldump ndash;opt -u$DB_USER -p$DB_PASS $DB_NAME $BACK_DIR/luwenju_$DATE.sql
#chmod +x /etc/mysqlback.sh
测试
#/etc/mysqlback.sh
#ls /opt/
luwenju_20110626.sql
2、设置定时备份周期
本案例中设置的为每日凌晨进行备份一次,具体备份周期根据具体应用
#crontab ndash;e
0 0 * * * /etc/mysqlback.sh
#/etc/init.d/crond restart
3、安装 rsync
#tar zxvf rsync-3.0.8.tar.gz
#cd rsync-3.0.8
#./configure make make install
创建配置文件, 加入如下内容
#vi /etc/rsync.conf
uid = nobody www.2cto.com
gid = nobody
use chroot = no
max connections = 10
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsyncd.lock
log file = /var/log/rsyncd.log
port = 873
timeout = 300
[backup]
read only = yes // 只读模式
list = yes
ignore errors
comment = This is a file back
path = /opt // 需要同步的目录
auth users = test // 验证用户
secrets file = /etc/rsync.passwd // 验证密码路径
hosts allow = 119.232.33.246 // 允许连接的客户端
上述就是丸趣 TV 小编为大家分享的 mysql 中怎么实现自动化备份了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注丸趣 TV 行业资讯频道。