bitsCN.com
MySQL备份与恢复之冷备
一 什么是冷备
用一句话概括冷备,就是把数据库服务,比如MySQL,Oracle停下来,然后使用拷贝、打包或者压缩命令对数据目录进行备份。如果数据出现异常,则可以通过备份数据恢复。冷备一般需要定制计划,比如什么时候做备份,每次对哪些数据进行备份等等。但是由于这样的备份占用过多的空间,对大数据量的环境下不一定适合,故生产环境很少使用。
二 冷备示意图
三 冷备实验
第一步,创建测试数据库,插入测试数据
mysql> use larrydb;Database changedmysql> show tables;+-------------------+| Tables_in_larrydb |+-------------------+| access |+-------------------+1 row in set (0.00 sec)mysql> drop table access;Query OK, 0 rows affected (0.00 sec)mysql> clearmysql> show tables;Empty set (0.00 sec)mysql> mysql> create table class( -> cid int, -> cname varchar(30));Query OK, 0 rows affected (0.01 sec)mysql> show create table class /G;*************************** 1. row *************************** Table: classCreate Table: CREATE TABLE `class` ( `cid` int(11) DEFAULT NULL, `cname` varchar(30) DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=latin11 row in set (0.00 sec)ERROR: No query specifiedmysql> create table stu( -> sid int, -> sname varchar(30), -> cid int) engine=myisam;Query OK, 0 rows affected (0.00 sec)mysql> show create table stu /G;*************************** 1. row *************************** Table: stuCreate Table: CREATE TABLE `stu` ( `sid` int(11) DEFAULT NULL, `sname` varchar(30) DEFAULT NULL, `cid` int(11) DEFAULT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf81 row in set (0.00 sec)ERROR: No query specifiedmysql> insert into class values(1,'linux'),(2,'oracle');Query OK, 2 rows affected (0.00 sec)Records: 2 Duplicates: 0 Warnings: 0mysql> desc class;+-------+-------------+------+-----+---------+-------+| Field | Type | Null | Key | Default | Extra |+-------+-------------+------+-----+---------+-------+| cid | int(11) | YES | | NULL | || cname | varchar(30) | YES | | NULL | |+-------+-------------+------+-----+---------+-------+2 rows in set (0.00 sec)mysql> desc stu;+-------+-------------+------+-----+---------+-------+| Field | Type | Null | Key | Default | Extra |+-------+-------------+------+-----+---------+-------+| sid | int(11) | YES | | NULL | || sname | varchar(30) | YES | | NULL | || cid | int(11) | YES | | NULL | |+-------+-------------+------+-----+---------+-------+3 rows in set (0.00 sec)mysql> insert into stu values(1,'larry01',1),(2,'larry02',2);Query OK, 2 rows affected (0.00 sec)Records: 2 Duplicates: 0 Warnings: 0mysql> select * from stu;+------+---------+------+| sid | sname | cid |+------+---------+------+| 1 | larry01 | 1 || 2 | larry02 | 2 |+------+---------+------+第二步,停掉MySQL[root@serv01 ~]# /etc/init.d/mysqld stopShutting down MySQL... SUCCESS! 第三步,创建备份目录,并修改拥有者和所属组[root@serv01 ~]# mkdir /databackup[root@serv01 ~]# chown mysql.mysql /databackup/ -R[root@serv01 ~]# ll /databackup/ -ddrwxr-xr-x. 2 mysql mysql 4096 Sep 10 17:46 /databackup/[root@serv01 ~]# cd /databackup/第四步,冷备(使用tar命令)[root@serv01 databackup]# tar -cvPzf mysql01.tar.gz 第五步,测试冷备的数据是否正常,我们删除掉data下的所有数据[root@serv01 databackup]# rm -rf /usr/local/mysql/data/*第六步,删除所有数据后数据库不能启动[root@serv01 databackup]# /etc/init.d/mysqld startStarting MySQL.. ERROR! The server quit without updating PID file (/usr/local/mysql/data/serv01.host.com.pid).第七步,恢复数据(使用tar命令)[root@serv01 databackup]# tar -xvPf mysql01.tar.gz 第八步,启动MySQL,然后登录MySQL,查看数据是否丢失,如果数据正常代表冷备成功[root@serv01 databackup]# /etc/init.d/mysqld startStarting MySQL.. SUCCESS! [root@serv01 ~]# mysqlWelcome to the MySQL monitor. Commands end with ; or /g.Your MySQL connection id is 1Server version: 5.5.29-log Source distributionCopyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '/h' for help. Type '/c' to clear the current input statement.mysql> use larrydb;Database changedmysql> select * from class;+------+--------+| cid | cname |+------+--------+| 1 | linux || 2 | oracle |+------+--------+2 rows in set (0.00 sec)mysql> select * from stu;+------+---------+------+| sid | sname | cid |+------+---------+------+| 1 | larry01 | 1 || 2 | larry02 | 2 |+------+---------+------+2 rows in set (0.00 sec)
bitsCN.com

windows7用户在启动时遇到了系统注册表文件遗失或损坏的现象,像这种情况要怎么解决呢?你先强制重启电脑,以后按F8键,在打开的页面中选择安全模式进到,之后在菜单栏找到命令提示符开启,输入SFC/SCANNOW指令并回车实行,这时候系统就会自动对电脑缺失或已损坏的安装文件进行修复。windows7系统注册表文件遗失或损坏怎么办1、最先开机自检之后,立刻按住F8键,应用方向键挑选安全模式,敲打回车即可。2、以后点击开始按钮,挑选命令提示符,以管理员的身份运作。3、最后在弹出的提示符中输入SFC/

ThinkPHP6数据备份与恢复:保障数据的安全性随着互联网的快速发展,数据已成为一项极其重要的资产。因此,数据的安全性备受关注。在Web应用开发中,数据备份与恢复是确保数据安全的重要一环。在本文中,我们将介绍如何使用ThinkPHP6框架进行数据备份与恢复,以保障数据的安全性。一、数据备份数据备份是指将数据库中的数据以某种方式进行复制或存储。这样即使在数据

Laravel是一个流行的PHPWeb应用程序框架,提供了许多快速而又简单的方式来构建高效、安全和可扩展的Web应用程序。在开发Laravel应用程序时,我们经常需要考虑数据恢复的问题,即如何在数据丢失或损坏的情况下恢复数据并保证应用程序的正常运行。在本文中,我们将介绍如何使用Laravel中间件来实现数据恢复功能,并提供具体的代码示例。一、什么是Lara

如何快速恢复MySQL数据库遭遇的故障和错误?MySQL是一种广泛使用的开源关系型数据库管理系统,许多应用程序和网站都依赖于它来存储和管理数据。然而,数据库故障和错误是不可避免的,这可能导致数据丢失或应用程序无法正常运行。在遭遇MySQL数据库故障或错误时,快速而有效地恢复数据库非常重要。本文将介绍一些快速恢复MySQL数据库的方法。确定故障和错误的类型在开

标题:如何应对Linux系统中的文件损坏和丢失问题引言:在使用Linux系统的过程中,文件损坏和丢失是一个不容忽视的问题。由于各种原因,我们可能会面临文件丢失、文件损坏或无法访问文件的情况。然而,幸运的是,Linux系统提供了一些实用工具和技术,帮助我们有效地应对文件损坏和丢失问题。本文将介绍一些常见的解决方法和技巧。一、备份数据备份是最重要的应对文件损坏和

华为电脑数据恢复的方法:1、从回收站恢复;2、使用数据恢复软件;3、从备份中恢复;4、使用华为云服务。详细介绍:1、从回收站恢复,如果华为电脑的数据被删除后,这些数据并没有被新的文件覆盖,那么可以从回收站中恢复这些数据;2、使用数据恢复软件,如果回收站中没有需要恢复的数据,或者数据被覆盖了,可以使用数据恢复软件来恢复华为电脑中的数据;3、从备份中恢复,如果华为电脑等等。

PHP表单处理:表单数据备份与恢复引言在网站开发过程中,表单是非常常见的交互方式,用户通过填写表单将数据提交给服务器端处理。然而,有时候用户可能会因为网络问题、浏览器崩溃或其他意外情况导致表单数据丢失,这会给用户的使用体验带来困扰。因此,为了提升用户体验,我们可以通过PHP实现表单数据的自动备份与恢复功能,以确保用户填写的数据不会丢失。表单数据备份当用户在表
![Windows媒体创建工具删除了我的文件 [恢复指南]](https://img.php.cn/upload/article/000/887/227/168239259339851.png)
WindowsPC上的媒体创建工具是一个实用工具,允许用户将其计算机升级到最新的Windows版本。此外,它还有助于创建Windows安装USB驱动器光盘,可用于执行全新安装或修复有问题的WindowsPC。但是,用户抱怨Windows媒体创建工具在运行时删除了其PC上的文件。此外,我们还有一个详细的指南来修复0x80072f8f-0x20000升级操作系统时出现的媒体创建工具错误。为什么Windows媒体创建工具删除了我的文件?Windows媒体创建工具删除PC上的文件发生在下载软件开始下载时


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
