你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
自动备份已启用 Azure Arc 的 PostgreSQL 服务器
要启用自动备份,请在创建已启用 Azure Arc 的 PostgreSQL 服务器时包括 --storage-class-backups
参数。 使用 --retention-days
参数指定备份的保持期。 创建或更新已启用 Arc 的 PostgreSQL 服务器时,请使用此参数。 保持期可以介于 0 到 35 天之间。 如果已启用备份但未指定保持期,则默认值为七天。
此外,如果将保持期设置为零,则会禁用自动备份。
使用自动备份创建服务器
使用自动备份创建已启用 Azure Arc 的 PostgreSQL 服务器:
az postgres server-arc create -n <name> -k <namespace> --storage-class-backups <storage-class> --retention-days <number of days> --use-k8s
更新服务器以设置保持期
更新已启用 Azure Arc 的 PostgreSQL 服务器的备份保持期:
az postgres server-arc update -n pg01 -k test --retention-days <number of days> --use-k8s