Home > Database > Mysql Tutorial > Linux 每天备份MySQL数据

Linux 每天备份MySQL数据

WBOY
Release: 2016-06-07 16:45:45
Original
1044 people have browsed it

如果你的MySQL数据库文件较大,可能备份的时候需要占用很多服务器资源,所以站长要尽量选择访客最少的时间段执行自动备份命令,比

前言:

如果你的MySQL数据库文件较大,可能备份的时候需要占用很多服务器资源,所以站长要尽量选择访客最少的时间段执行自动备份命令,比如凌晨4-5点左右。而且要注意给备份留下足够的时间然后执行存储命令。

第一步:

首先要支持crontab,如果不支持的话,请参考我的博客:Linux VPS/服务器上用Crontab来实现VPS自动化

第二步:

shell脚本->mysqlbak.sh

#!/bin/bash

BACKPATH='存储文件路径'
D=`date +%Y-%m-%d_%H%M%S`
NAME=$D.sql.gz

/usr/local/mysql/bin/mysqldump -u数据库名 -p数据库密码 指定的数据库 --skip-lock-tables | gzip > $BACKPATH/$NAME

第三步:

定时任务执行 每天两点后执行。具体可以根据个人情况哦!

执行命令:crontab -e

00 02 * * * /脚本路径/mysqlbak.sh

因为一个服务器可能会遭到天灾人祸,,备份的数据库文件要存在不同的服务器或者下载到本地更保险。其实就是这么简单啦!

--------------------------------------分割线 --------------------------------------

Ubuntu 14.04下安装MySQL

《MySQL权威指南(原书第2版)》清晰中文扫描版 PDF

Ubuntu 14.04 LTS 安装 LNMP Nginx\PHP5 (PHP-FPM)\MySQL

Ubuntu 14.04下搭建MySQL主从服务器

Ubuntu 12.04 LTS 构建高可用分布式 MySQL 集群

Ubuntu 12.04下源代码安装MySQL5.6以及Python-MySQLdb

MySQL-5.5.38通用二进制安装

--------------------------------------分割线 --------------------------------------

本文永久更新链接地址:

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template