腾讯云MySQL备份本地恢复

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了腾讯云MySQL备份本地恢复相关的知识,希望对你有一定的参考价值。

逻辑备份

下载文件

wget -c https://mysql-database-backup-bj-1256569818.cos.ap-be1eb-86cc-6c92bf479dfd%2Fdata%2Fautomatic-deam  -O test1_full_sql.xb

解包文件

xbstream -p 20 -v  -x  < test1_full_sql.xb

安装解压工具

# 下载工具
wget -d --user-agent="Mozilla/5.0 (Windows NT x.y; rv:10.0) Gecko/20100101 Firefox/10.0" https://docs-tencentdb-1256569818.cos.ap-guangzhou.myqcloud.com/qpress-11-linux-x64.tar

# 解压
tar -xf qpress-11-linux-x64.tar -C /usr/local/bin

# 生效
source /etc/profile

解压文件

qpress -dvoT20   cdb-2x9wmyru_backup_20230306141409.sql.qp    >test1_sql.sql

​ END


物理备份

下载文件

每个链接有效期为12小时 wget命令格式: wget -c <备份文件下载地址> -O <自定义文件名>.xb

wget -c https://mysql-database-backup-bj-1256569818.cos.ap-be1eb-86cc-6c92bf479dfd%2Fdata%2Fautomatic-deam \\  -O test1_full.xb

解包文件

mkdir /tmp/test1_full
xbstream -x  -v  -p 20   -C /tmp/test1_full  < test1_full.xb

解压文件

xtrabackup   --decompress --remove-original  --target-dir=/tmp/test1_full

准备备份文件

xtrabackup --prepare  --target-dir=/tmp/test1_full

准备完成后即可将物理文件挪到mysql数据目录下使用了。

参考文章:

https://cloud.tencent.com/document/product/236/33364

https://cloud.tencent.com/document/product/236/33363

以上是关于腾讯云MySQL备份本地恢复的主要内容,如果未能解决你的问题,请参考以下文章

MySql 5.7.40备份到腾讯云cos+从cos恢复

MySql 5.7.40备份到腾讯云cos+从cos恢复

如何将阿里云的数据库备份RDS文件在本地恢复

阿里云RDS-Mysql物理备份数据库文件,在本地windows下数据库恢复过程

如何将阿里云的mysql数据备份到本地

阿里云RDS数据备份本地恢复