使用mysqldump导出AWS Aurora无服务器MySQL数据库

时间:2020-06-26 09:29:36

标签: mysql amazon-web-services aws-aurora-serverless

是否可以在不使用EC2实例的情况下使用mysqldump导出AWS Aurora无服务器MySQL数据库?

2 个答案:

答案 0 :(得分:2)

目前,您无法获得对Aurora的公共访问权,也无法使用站点到站点VPN连接进行连接。

您使用的所有资源都必须驻留在Aurora Serverless群集的VPC中。绕过EC2要求的可能解决方案是运行Fargate容器来运行命令或查看Lambda来执行命令。

答案 1 :(得分:0)

我最终决定使用 Python AWS Data API 模拟 mysqldump

要模拟 mysqldump ,我遵循:

How can I dump a MySQL database without using mysqldump in Python