当前位置:   article > 正文

使用备份工具xtrabackup对数据库进行压缩备份并解压缩_xtrabackup删除压缩文件

xtrabackup删除压缩文件

压缩备份

  • 如果要加速压缩,可以使用--compress-threads选项

  • --compress-threads=4 使用四个线程同时进行压缩

清除之前的备份文件

  1. [root@service ~]# rm -rf /data/backup/*
  2. [root@service ~]# ls /data/backup

输入备份压缩命令

  1. [root@service ~]# xtrabackup --defaults-file=/etc/my.cnf --backup --compress --target-dir=/data/backup/compressed/ -uroot -pWyxbuke00. -H localhost -P 3306
  2. [root@service ~]# ls /data/backup
  3. compressed

 停止MySQL服务,删除数据库中的文件

  1. [root@service ~]# systemctl stop mysqld
  2. [root@service ~]# rm -rf /var/lib/mysql/*

 

解压缩

  • 解压缩需要有 qpress 命令,由于我建了yum库,可以直接通过yum安装 yum -y install qpress

  • 使用 --decompress压缩的备份集在准备备份之前需要解压,解压工具是qpress。解压后的原文件不会被删除,可以使用--remove-original选项清除。

  • --parallel可与--decompress选项一起使用以同时解压缩多个文件

输入解压缩命令

xtrabackup --defaults-file=/etc/my.cnf --decompress --target-dir=/data/backup/compressed/

 

准备备份文件

[root@service ~]# xtrabackup --prepare --target-dir=/data/backup/compressed

 

开始恢复

[root@service ~]# xtrabackup --defaults-file=/etc/my.cnf --copy-back --target-dir=/data/backup/compressed

 

查看恢复清空

  1. [root@service ~]# chown -R mysql.mysql /var/lib/mysql
  2. [root@service ~]# systemctl start mysqld
  3. [root@service ~]# ls /var/lib/mysql
  4. auto.cnf ca-key.pem db01 ibdata1 mysql performance_schema server-key.pem undo_001
  5. binlog.000023 ca.pem '#ib_16384_0.dblwr' ibtmp1 mysql.ibd private_key.pem service-relay-bin.000001 undo_002
  6. binlog.000024 client-cert.pem '#ib_16384_1.dblwr' '#innodb_redo' mysql.sock public_key.pem service-relay-bin.index xtrabackup_info
  7. binlog.index client-key.pem ib_buffer_pool '#innodb_temp' mysql.sock.lock server-cert.pem sys
  8. [root@service ~]# mysql -u root -p
  9. Enter password:
  10. Welcome to the MySQL monitor. Commands end with ; or \g.
  11. Your MySQL connection id is 8
  12. Server version: 8.0.36 MySQL Community Server - GPL
  13. Copyright (c) 2000, 2024, Oracle and/or its affiliates.
  14. Oracle is a registered trademark of Oracle Corporation and/or its
  15. affiliates. Other names may be trademarks of their respective
  16. owners.
  17. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  18. mysql> use db01;
  19. Reading table information for completion of table and column names
  20. You can turn off this feature to get a quicker startup with -A
  21. Database changed
  22. mysql> select * from tb_user;
  23. +----+----------+------+
  24. | id | name | sex |
  25. +----+----------+------+
  26. | 1 | Tom | 1 |
  27. | 2 | Trigger | 0 |
  28. | 3 | Dawn | 1 |
  29. | 4 | sxx | 0 |
  30. | 5 | wyx | 1 |
  31. | 6 | asd | 1 |
  32. | 7 | lisi | 1 |
  33. | 8 | zhangsan | 1 |
  34. | 9 | haha | 1 |
  35. +----+----------+------+
  36. 9 rows in set (0.00 sec)

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/454788
推荐阅读
相关标签
  

闽ICP备14008679号