[root@DB-SERVER databackup]# innobackupex --apply-log /databackup/2016-09-18_02-48-10/
InnoDB: 128 rollback segment(s) are active.
InnoDB: Waiting for purge to start
InnoDB: 5.6.24 started; log sequence number 1609740
xtrabackup: starting shutdown with innodb_fast_shutdown = 1
InnoDB: FTS optimize thread exiting.
InnoDB: Starting shutdown...
InnoDB: Shutdown completed; log sequence number 1609750
160918 02:53:59 completed OK!
[root@DB-SERVER databackup]#
关闭数据库,模拟数据丢失,可以将MySQL的数据目录删除,我们这里为了演示方便,直接把数据目录改名
[root@DB-SERVER ~]# /etc/init.d/mysld stop
Shutting down MySQL. SUCCESS!
[root@DB-SERVER ~]# cd /application/mysql-5.5.32/
[root@DB-SERVER mysql-5.5.32]# ll
total 84
drwxr-xr-x 2 mysql mysql 4096 Sep 17 23:36 bin
-rw-r--r-- 1 mysql mysql 17987 Jul 2 2013 COPYING
drwx------ 6 mysql mysql 4096 Sep 18 02:54 data
drwxr-xr-x 6 mysql mysql 4096 Sep 18 01:40 data.backup
drwxr-xr-x 2 mysql mysql 4096 Sep 17 23:36 docs
drwxr-xr-x 3 mysql mysql 4096 Sep 17 23:36 include
-rw-r--r-- 1 mysql mysql 7470 Jul 2 2013 INSTALL-BINARY
drwxr-xr-x 3 mysql mysql 4096 Sep 17 23:36 lib
drwxr-xr-x 4 mysql mysql 4096 Sep 17 23:36 man
drwxr-xr-x 10 mysql mysql 4096 Sep 17 23:36 mysql-test
-rw-r--r-- 1 mysql mysql 2496 Jul 2 2013 README
drwxr-xr-x 2 mysql mysql 4096 Sep 17 23:36 scripts
drwxr-xr-x 27 mysql mysql 4096 Sep 17 23:36 share
drwxr-xr-x 4 mysql mysql 4096 Sep 17 23:36 sql-bench
drwxr-xr-x 3 mysql mysql 4096 Sep 17 23:36 support-files
drwxr-xr-x 2 mysql root 4096 Sep 18 02:54 tmp
[root@DB-SERVER mysql-5.5.32]# mv data data.backup
[root@DB-SERVER mysql-5.5.32]# mkdir data
[root@DB-SERVER mysql-5.5.32]#
[root@DB-SERVER mysql-5.5.32]# ll data
total 2
[root@DB-SERVER mysql-5.5.32]#
目录data下没有数据,接下来执行恢复操作
[root@DB-SERVER databackup]# innobackupex --copy-back /databackup/2016-09-18_02-48-10/
160918 02:57:41 innobackupex: Starting the copy-back operation
IMPORTANT: Please check that the copy-back run completes successfully.
At the end of a successful copy-back run innobackupex
prints "completed OK!".
innobackupex version 2.3.2 based on MySQL server 5.6.24 Linux (x86_64) (revision id: 306a2e0)
160918 02:57:41 [01] Copying ib_logfile0 to /application/mysql-5.5.32/data/ib_logfile0
160918 02:57:41 [01] ...done
160918 02:57:42 [01] Copying ./opark/db.opt to /application/mysql-5.5.32/data/opark/db.opt
160918 02:57:42 [01] ...done
160918 02:57:42 [01] Copying ./test/db.opt to /application/mysql-5.5.32/data/test/db.opt
160918 02:57:42 [01] ...done
160918 02:57:42 completed OK!
[root@DB-SERVER databackup]#
[root@DB-SERVER mysql-5.5.32]# /etc/init.d/mysld start
Starting MySQL. ERROR! The server quit without updating PID file (/application/mysql-5.5.32/data/DB-SERVER.pid).
进一步查看错误日志:
[root@DB-SERVER data]# cat DB-SERVER.err
160918 18:04:18 mysqld_safe Starting mysqld daemon with databases from /application/mysql-5.5.32/data
160918 18:04:18 [Note] Plugin 'FEDERATED' is disabled.
/application/mysql-5.5.32/bin/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13)
160918 18:04:18 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
160918 18:04:18 InnoDB: The InnoDB memory heap is disabled
160918 18:04:18 InnoDB: Mutexes and rw_locks use GCC atomic builtins
160918 18:04:18 InnoDB: Compressed tables use zlib 1.2.3
160918 18:04:18 InnoDB: Initializing buffer pool, size = 128.0M
160918 18:04:18 InnoDB: Completed initialization of buffer pool
160918 18:04:18 InnoDB: Operating system error number 13 in a file operation.
InnoDB: The error means mysqld does not have the access rights to
InnoDB: the directory.
InnoDB: File name ./ibdata1
InnoDB: File operation call: 'open'.
InnoDB: Cannot continue operation.
160918 18:04:18 mysqld_safe mysqld from pid file /application/mysql-5.5.32/data/DB-SERVER.pid ended
[root@DB-SERVER mysql-5.5.32]#
出现这样的错误一般就是data目录下的数据用户名和和属组不是mysql,所以这里修改下:
[root@DB-SERVER mysql-5.5.32]# chown -R mysql.mysql data
[root@DB-SERVER mysql-5.5.32]# ll data
total 116760
-rw-r----- 1 mysql mysql 1025 Sep 18 03:00 DB-SERVER.err
-rw-r----- 1 mysql mysql 18874368 Sep 18 02:57 ibdata1
-rw-r----- 1 mysql mysql 50331648 Sep 18 02:57 ib_logfile0
-rw-r----- 1 mysql mysql 50331648 Sep 18 02:57 ib_logfile1
drwx------ 2 mysql mysql 4096 Sep 18 02:57 mysql
drwx------ 2 mysql mysql 4096 Sep 18 02:57 opark
drwx------ 2 mysql mysql 4096 Sep 18 02:57 performance_schema
drwx------ 2 mysql mysql 4096 Sep 18 02:57 test
-rw-r----- 1 mysql mysql 429 Sep 18 02:57 xtrabackup_info
[root@DB-SERVER mysql-5.5.32]#
再启动运行/etc/init.d/mysqld start
[root@DB-SERVER mysql-5.5.32]# /etc/init.d/mysld start
Starting MySQL.. SUCCESS!
[root@DB-SERVER mysql-5.5.32]# mysql -uroot -proot -hlocalhost
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.32 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| opark |
| performance_schema |
| test |
+--------------------+
5 rows in set (0.00 sec)
mysql> use opark;
Database changed
mysql> select * from person;
+--------+------------+------------+
| number | name | birthday |
+--------+------------+------------+
| 1 | John Poul | 2016-09-18 |
| 2 | John Hock | 2016-09-18 |
| 3 | Rick Hock | 2016-09-18 |
| 4 | Rick stone | 2016-09-18 |
| 5 | John Green | 2016-09-18 |
| 6 | John Halk | 2016-09-18 |
| 7 | Rick rose | 2016-09-18 |
| 8 | Rick kate | 2016-09-18 |
+--------+------------+------------+
8 rows in set (0.00 sec)
mysql>
innobackupex --user=backup --password='MANAGER' --incremental /databackup/incrementdir --incremental-basedir=/databackup/2016-09-18_03-35-06/ ①.向数据库中添加数据:
INSERT INTO person (number,name,birthday) VALUES ("0009", "Reh Hat", NOW());
INSERT INTO person (number,name,birthday) VALUES ("0010", "pyhton study", NOW());
INSERT INTO person (number,name,birthday) VALUES ("0008", "Linux system", NOW());
mysql> select * from person;
+--------+--------------+------------+
| number | name | birthday |
+--------+--------------+------------+
| 1 | John Poul | 2016-09-18 |
| 2 | John Hock | 2016-09-18 |
| 3 | Rick Hock | 2016-09-18 |
| 4 | Rick stone | 2016-09-18 |
| 5 | John Green | 2016-09-18 |
| 6 | John Halk | 2016-09-18 |
| 7 | Rick rose | 2016-09-18 |
| 8 | Rick kate | 2016-09-18 |
| 9 | Reh Hat | 2016-09-18 |
| 10 | pyhton study | 2016-09-18 |
| 8 | Linux system | 2016-09-18 |
+--------+--------------+------------+
11 rows in set (0.00 sec)
②.删除数据
mysql> delete from opark.person where name="Reh Hat";
Query OK, 1 row affected (0.01 sec)
mysql> select * from person;
+--------+--------------+------------+
| number | name | birthday |
+--------+--------------+------------+
| 1 | John Poul | 2016-09-18 |
| 2 | John Hock | 2016-09-18 |
| 3 | Rick Hock | 2016-09-18 |
| 4 | Rick stone | 2016-09-18 |
| 5 | John Green | 2016-09-18 |
| 6 | John Halk | 2016-09-18 |
| 7 | Rick rose | 2016-09-18 |
| 8 | Rick kate | 2016-09-18 |
| 10 | pyhton study | 2016-09-18 |
| 8 | Linux system | 2016-09-18 |
+--------+--------------+------------+
10 rows in set (0.00 sec)
mysql>
[root@DB-SERVER databackup]# innobackupex --user=backup --password='MANAGER' --incremental /databackup/incrementdir --incremental-basedir=/databackup/2016-09-18_03-09-33
160918 03:23:25 Executing UNLOCK TABLES
160918 03:23:25 All tables unlocked
160918 03:23:25 Backup created in directory '/databackup/incrementdir/2016-09-18_03-23-22'
160918 03:23:25 [00] Writing backup-my.cnf
160918 03:23:25 [00] ...done
160918 03:23:25 [00] Writing xtrabackup_info
160918 03:23:25 [00] ...done
xtrabackup: Transaction log of lsn (1611092) to (1611092) was copied.
160918 03:23:25 completed OK!
[root@DB-SERVER databackup]#
[root@DB-SERVER databackup]# ll incrementdir/
total 4
drwx------ 6 root root 4096 Sep 18 03:23 2016-09-18_03-23-22
[root@DB-SERVER databackup]# ll
total 24
drwx------ 6 root root 4096 Sep 18 01:40 2016-09-18_01-40-28
drwx------ 6 root root 4096 Sep 18 02:53 2016-09-18_02-48-10
drwx------ 6 root root 4096 Sep 18 03:05 2016-09-18_03-05-15
drwx------ 6 root root 4096 Sep 18 03:09 2016-09-18_03-09-33
drwxr-xr-x 3 root root 4096 Sep 18 03:23 incrementdir
drwxr-xr-x 2 root root 4096 Sep 18 03:16 xtrabackuplog
[root@DB-SERVER databackup]#