403Webshell
Server IP : 167.99.254.82  /  Your IP : 216.73.216.188
Web Server : Apache
System : Linux host.techisquad.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64
User : pawluxera ( 1011)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/doc/awscli/examples/rds/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/doc/awscli/examples/rds/reset-db-parameter-group.rst
**Example 1: To reset all parameters to their default values**

The following ``reset-db-parameter-group`` example resets all parameter values in a customer-created DB parameter group to their default values. ::

    aws rds reset-db-parameter-group \
        --db-parameter-group-name mypg \
        --reset-all-parameters

Output::

    {
        "DBParameterGroupName": "mypg"
    }

For more information, see `Working with DB parameter groups <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html>`__ in the *Amazon RDS User Guide* and `Working with DB parameter groups and DB cluster parameter groups <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html>`__ in the *Amazon Aurora User Guide*.

**Example 2: To reset specific parameters to their default values**

The following ``reset-db-parameter-group`` example resets the parameter values for specific parameters to their default values in a customer-created DB parameter group. ::

    aws rds reset-db-parameter-group \
        --db-parameter-group-name mypg \
        --parameters "ParameterName=max_connections,ApplyMethod=immediate" \
                     "ParameterName=max_allowed_packet,ApplyMethod=immediate"

Output::

    {
        "DBParameterGroupName": "mypg"
    }

For more information, see `Working with DB parameter groups <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html>`__ in the *Amazon RDS User Guide* and `Working with DB parameter groups and DB cluster parameter groups <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html>`__ in the *Amazon Aurora User Guide*.

Youez - 2016 - github.com/yon3zu
LinuXploit