本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
還原 Neptune 叢集
使用 AWS Backup 主控台還原 Amazon Neptune 復原點
還原 Amazon Neptune 資料庫需要您指定多個還原選項。如需這些選項的資訊,請參閱《Neptune 使用者指南》中的《從資料庫叢集快照還原》。
還原 Neptune 資料庫
在 https://console.aws.amazon.com/backup
開啟 AWS Backup 主控台。 -
在導覽窗格中,選擇 受保護的資源 和您要還原的 Neptune 資源 ID。
-
Resource details (資源詳細資訊) 頁面上會顯示所選資源 ID 的復原點清單。若要還原資源,請在 Backups (備份) 窗格中,選擇資源復原點 ID 旁邊的選項按鈕。在窗格右上角,選擇 Restore (還原)。
-
在 執行個體規格 窗格中,接受預設值,或指定 資料庫引擎 和 版本。
-
在設定窗格中,指定在 AWS 帳戶 目前區域中 擁有的所有資料庫叢集執行個體的唯一名稱。資料庫叢集識別符會區分大小寫,但全部以小寫形式儲存,如「
mydbclusterinstance
」中所示。此為必要欄位。 -
在 資料庫選項 窗格中,接受預設值,或指定 資料庫連接埠 和 資料庫叢集參數群組 的選項。
-
在 Encryption (加密) 窗格中,接受預設值,或指定 Enable encryption (啟用加密) 或 Disable encryption (停用加密) 設定的選項。
-
在日誌匯出窗格中,選擇要發佈至 Amazon CloudWatch Logs 的日誌類型。IAM 角色已定義。
-
在還原角色窗格中,選擇此還原將擔任IAM的角色 AWS Backup 。
-
指定所有設定之後,請選擇 Restore backup (還原備份)。
Restore jobs (還原任務) 窗格隨即出現。頁面頂端的訊息提供還原任務的相關資訊。
-
還原完成後,將還原的 Neptune 叢集連接至 Amazon RDS執行個體。
使用 AWS Backup API、 CLI或 SDK 還原 Neptune 復原點
請先還原叢集。請使用 StartRestoreJob
。您可以在 Amazon DocumentDB 還原期間指定下列中繼資料:
availabilityZones backtrackWindow copyTagsToSnapshot // Boolean databaseName // string dbClusterIdentifier // string dbClusterParameterGroupName // string dbSubnetGroupName // string enableCloudwatchLogsExports // string enableIAMDatabaseAuthentication // Boolean engine // string engineMode // string engineVersion // string kmsKeyId // string port // integer optionGroupName // string scalingConfiguration vpcSecurityGroupIds // string
然後,使用 將還原的 Neptune 叢集連接至 Amazon RDS執行個體create-db-instance
。
-
若為 Linux、macOS 或 Unix:
aws neptune create-db-instance --db-instance-identifier
sample-instance
\ --db-instance-classdb.r5.large
--engine neptune --engine-version1.0.5.0
--db-cluster-identifiersample-cluster
--regionus-east-1
-
針對 Windows:
aws neptune create-db-instance --db-instance-identifier
sample-instance
^ --db-instance-classdb.r5.large
--engine neptune --engine-version1.0.5.0
--db-cluster-identifiersample-cluster
--regionus-east-1
如需詳細資訊,請參閱 Neptune 管理API參考RestoreDBClusterFromSnapshot
中的 和 Neptune 指南restore-db-cluster-from-snapshot