备份和导出数据库
Redis 云 |
---|
Redis Cloud 数据库的备份选项取决于您的计划:
-
Redis Cloud Pro 订阅可以按需备份或导出数据库,并计划在设定的时间内进行每日备份。
-
付费的 Redis Cloud Essentials 计划可以按需备份或导出数据库,并计划每 24 小时进行一次备份。
-
免费计划无法通过 Redis Cloud 控制台备份或导出数据库。
备份将保存到订阅可用的预定义存储位置。在启用数据库备份之前,备份位置需要可用。要了解更多信息,请参阅设置备份存储位置。
备份以 RDB 格式保存。如果数据库由多个分片组成,则将为数据库的每个分片创建一个 RDB 文件。有关从备份还原数据的更多信息,请参阅从 RDB 文件还原。
在这里,您将学习如何使用不同的云提供商存储备份。
启用备份
要打开数据库备份:
-
登录到 Redis Cloud 控制台。
-
选择数据库以打开 Database (数据库) 页面,然后选择 Edit (编辑)。
-
在 Configuration (配置) 选项卡的 Durability (持续性) 部分中,找到 Remote backup (远程备份) 设置:
启用 Remote backup (远程备份) 时,将显示其他选项。选项因您的订阅而异。

设置名称 | 描述 |
---|---|
间隔 | 定义自动备份的频率。付费的 Redis Cloud Essentials 数据库每 24 小时备份一次。Redis Cloud Pro 数据库的备份间隔可以设置为 24、12、6、4、2 或 1 小时。 |
设置备份时间 | 选中后,这允许您设置 Backup time 的小时。(仅限 Redis Cloud Pro) |
备份时间 | 定义进行自动备份的时间。请注意,实际备份时间会有所不同,以尽量减少客户访问中断。(仅限 Redis Cloud Pro) 时间以协调世界时 (UTC) 表示。 |
存储类型 | 定义存储位置的提供程序,可以是:AWS S3 ,Google Cloud Storage ,Azure Blob Storage 或FTP (FTPS) 的 S 的 |
备份目标 | 定义表示备份存储位置的 URI。 |
按需备份和导出数据
开启备份后,您可以随时备份数据。使用 Durability (持续性) 部分中的 Backup now (立即备份) 按钮。

只有在打开备份后,才能使用 Backup now (立即备份) 按钮。
设置备份存储位置
数据库备份可以存储到云提供商服务,也可以使用 FTP/FTPS 保存到 URI。
您的订阅需要能够查看权限和更新存储位置中的对象。具体细节因提供商而异。要了解更多信息,请参阅提供商的文档。
以下部分介绍特定的备份选项。请注意,提供程序功能经常更改。为获得最佳结果,请使用提供商的文档以获取最新信息。
AWS S3
要将备份存储在 Amazon Web Services (AWS) Simple Storage Service (S3) 存储桶中,请执行以下作:
-
在 AWS 管理控制台中,使用 Services (服务) 菜单找到并选择 Storage > S3 (存储) 。这将带您进入 Amazon S3 管理面板。
-
使用 Buckets (存储桶) 列表查找并选择您的存储桶。当设置出现时,选择 Permissions (权限) 选项卡,找到 Bucket policy (存储桶策略) 部分,然后单击 Edit (编辑)。
-
如果没有现有的 bucket policy,请添加以下 JSON bucket policy。取代
UNIQUE-BUCKET-NAME
替换为您的存储桶的名称。{ "Version": "2012-10-17", "Id": "MyBucketPolicy", "Statement": [ { "Sid": "RedisCloudBackupsAccess", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::168085023892:root" }, "Action": [ "s3:PutObject", "s3:getObject", "s3:DeleteObject" ], "Resource": "arn:aws:s3:::UNIQUE-BUCKET-NAME/*" } ] }
-
If a bucket policy already exists, add the following JSON policy statement to the list of statements. Replace
UNIQUE-BUCKET-NAME
with the name of your bucket.{ "Sid": "RedisCloudBackupsAccess", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::168085023892:root" }, "Action": [ "s3:PutObject", "s3:getObject", "s3:DeleteObject" ], "Resource": "arn:aws:s3:::UNIQUE-BUCKET-NAME/*" }
-
-
Save your changes.
-
If the bucket is encrypted using SSE-KMS, add the following statement to your key policy. If you do not have a key policy, see Creating a key policy. Replace
UNIQUE-BUCKET-NAME
with the name of your bucket andCUSTOM-KEY-ARN
with your key's Amazon Resource Name (ARN).{ "Sid": "Allow use of the key", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::168085023892:root" }, "Action": [ "kms:Encrypt", "kms:Decrypt", "kms:ReEncrypt*", "kms:GenerateDataKey*", "kms:DescribeKey" ], "Resource": [ "arn:aws:s3:::UNIQUE-BUCKET-NAME/*", "CUSTOM-KEY-ARN" ] }
Once the bucket is available and the permissions are set, use the name of your bucket as the Backup destination for your database's Remote backup settings. For example, suppose your bucket is named backups-bucket. In that case, set Backup destination to s3://backups-bucket
.
To learn more, see Using bucket policies on the AWS docs.
Note:
An AWS S3 bucket can be used by only one Redis Cloud account. If you have more than one Redis Cloud account, repeat the setup steps for multiple buckets.
Google Cloud Storage
To store backups in a Google Cloud Storage bucket:
-
Sign in to the Google Cloud console.
-
In the console menu, locate the Storage section, then select Cloud Storage > Buckets.
-
Create or select a bucket.
-
Select the Permissions tab.
-
Select the Grant Access button and then add:
service@redislabs-prod-clusters.iam.gserviceaccount.com
-
Set Role to Storage Legacy Bucket Writer.
-
Save your changes.
-
Verify that your bucket does not have a set retention policy.
To do so:
-
View the details of your bucket.
-
Select the Configuration tab.
-
Verify Protection -> Bucket retention policy is set to none.
If a policy is defined and you cannot delete it, you need to use a different bucket.
Use the bucket details Configuration tab to locate the gsutil URI. This is the value you'll assign to your resource's backup path.
To learn more, see Use IAM permissions.
Azure Blob Storage
To store your backup in Microsoft Azure Blob Storage, sign in to the Azure portal and then:
-
Create an Azure Storage account if you do not already have one.
-
Create a container if you do not already have one.
-
Find your storage account's primary access key. See Manage storage account access keys for instructions.
Set your resource's Backup Path to the path of your storage account.
The syntax for creating the backup varies according to your authorization mechanism. For example:
abs://:storage_account_access_key@storage_account_name/container_name/[path/]
Where:
- storage_account_access_key: the primary access key to the
storage account
- storage_account_name: the storage account name
- container_name: the name of the container, if needed.
- path: the backups path, if needed.
To learn more, see Authorizing access to data in Azure Storage.
FTP Server
To store your backups on an FTP server, set its Backup Path using the following syntax:
<protocol>://[username]:[password]@[hostname]:[port]/[path]/
Where:
-
protocol: the server's protocol, can be either ftp
or ftps
.
-
username: your username, if needed.
-
password: your password, if needed.
-
hostname: the hostname or IP address of the server.
-
port: the port number of the server, if needed.
-
path: the backup path, if needed.
Note:
If your FTP username or password contains special characters such as @
, \
, or :
, you must URL encode (also known as Percent encode) these special characters. If you don't, your database may become stuck.
The user account needs permission to write files to the server.
On this page