Modifying parameters in a DB cluster parameter groupin Amazon Aurora
You can modify parameter values in a customer-created DB cluster parameter group. You can't change the parameter values in a default DB cluster parameter group. Changes to parameters in a customer-created DB cluster parameter group are applied to all DB clusters that are associated with the DB cluster parameter group.
To modify a DB cluster parameter group
-
Sign in to the AWS Management Console and open the Amazon RDS console at https://console.aws.amazon.com/rds/
. -
In the navigation pane, choose Parameter groups.
-
In the list, choose the parameter group that you want to modify.
-
For Parameter group actions, choose Edit.
-
Change the values of the parameters you want to modify. You can scroll through the parameters using the pagination controls.
You can't change values in a default parameter group.
-
Choose Save changes.
-
Reboot the primary (writer) DB instance in the cluster to apply the changes to it.
-
Then reboot the reader DB instances to apply the changes to them.
If you don't reboot the DB instances, then a failover operation could take longer than normal.
To modify a DB cluster parameter group, use the AWS CLI modify-db-cluster-parameter-group command with the following
required parameters:
-
--db-cluster-parameter-group-name -
--parameters
The following example modifies the server_audit_logging and
server_audit_logs_upload values in the DB cluster parameter group named
mydbclusterparametergroup.
Example
For Linux, macOS, or Unix:
aws rds modify-db-cluster-parameter-group \ --db-cluster-parameter-group-namemydbclusterparametergroup\ --parameters "ParameterName=server_audit_logging,ParameterValue=1,ApplyMethod=immediate" \ "ParameterName=server_audit_logs_upload,ParameterValue=1,ApplyMethod=immediate"
For Windows:
aws rds modify-db-cluster-parameter-group ^ --db-cluster-parameter-group-namemydbclusterparametergroup^ --parameters "ParameterName=server_audit_logging,ParameterValue=1,ApplyMethod=immediate" ^ "ParameterName=server_audit_logs_upload,ParameterValue=1,ApplyMethod=immediate"
The command produces output like the following:
DBCLUSTERPARAMETERGROUP mydbclusterparametergroup
To modify a DB cluster parameter group, use the RDS API ModifyDBClusterParameterGroup command with the following
required parameters:
-
DBClusterParameterGroupName -
Parameters