在 極光中列出數據庫參數組 - Amazon Aurora

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

極光中列出數據庫參數組

您可以列出為您的 AWS 帳戶建立的資料庫參數群組。

注意

當您為特定資料庫引擎和版本建立資料庫執行個體時,會從預設的參數範本自動建立預設的參數群組。這些預設參數群組包含偏好的參數設定,無法修改。當您建立自訂參數群組時,您可以修改參數設定。

列出 AWS 帳戶的所有資料庫參數群組
  1. 登錄 AWS Management Console 並在打開 Amazon RDS 控制台https://console.aws.amazon.com/rds/

  2. 在導覽窗格中,選擇 Parameter groups (參數群組)

    資料庫參數群組隨即會出現在清單中。

若要列出 AWS 帳戶的所有資料庫參數群組,請使用 AWS CLI describe-db-parameter-groups指令。

範例

以下範例列出 AWS 帳戶的所有可用資料庫參數群組。

aws rds describe-db-parameter-groups

此命令會傳回類似以下的回應:

DBPARAMETERGROUP default.mysql8.0 mysql8.0 Default parameter group for MySQL8.0 DBPARAMETERGROUP mydbparametergroup mysql8.0 My new parameter group

以下範例說明 mydbparamgroup1 參數群組。

對於LinuxmacOS、或Unix:

aws rds describe-db-parameter-groups \ --db-parameter-group-name mydbparamgroup1

在 Windows 中:

aws rds describe-db-parameter-groups ^ --db-parameter-group-name mydbparamgroup1

此命令會傳回類似以下的回應:

DBPARAMETERGROUP mydbparametergroup1 mysql8.0 My new parameter group

若要列出 AWS 帳戶的所有資料庫參數群組,請使用此RDSAPIDescribeDBParameterGroups作業。