查看数据库集群参数组的参数值
您可获得数据库集群参数组内所有参数的列表及它们的值。
查看数据库集群参数组的参数值
-
登录 Amazon Web Services Management Console 并通过以下网址打开 Amazon RDS 控制台:https://console.aws.amazon.com/rds/
。 -
在导航窗格中,选择参数组。
数据库集群参数组出现在数据库集群参数组的类型列表中。
-
选择数据库集群参数组的名称以查看其参数列表。
要查看数据库集群参数组的参数值,请使用 Amazon CLI describe-db-cluster-parameters
命令及以下必要参数。
--db-cluster-parameter-group-name
例
以下示例以 JSON 格式列出名为 mydbclusterparametergroup 的数据库集群参数组的参数和参数值。
此命令会返回类似以下内容的响应:
aws rds describe-db-cluster-parameters --db-cluster-parameter-group-name
mydbclusterparametergroup
{
"Parameters": [
{
"ParameterName": "activate_all_roles_on_login",
"ParameterValue": "0",
"Description": "Automatically set all granted roles as active after the user has authenticated successfully.",
"Source": "engine-default",
"ApplyType": "dynamic",
"DataType": "boolean",
"AllowedValues": "0,1",
"IsModifiable": true,
"ApplyMethod": "pending-reboot",
"SupportedEngineModes": [
"provisioned"
]
},
{
"ParameterName": "allow-suspicious-udfs",
"Description": "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded",
"Source": "engine-default",
"ApplyType": "static",
"DataType": "boolean",
"AllowedValues": "0,1",
"IsModifiable": false,
"ApplyMethod": "pending-reboot",
"SupportedEngineModes": [
"provisioned"
]
},
...
要查看数据库集群参数组的参数值,请使用带下列所需参数的 RDS API DescribeDBClusterParameters
命令。
DBClusterParameterGroupName
在某些情况下,不显示参数的允许值。这些始终是源为数据库引擎原定设置值的参数。
要查看这些参数的值,可以运行以下 SQL 语句:
-
MySQL:
-- Show the value of a particular parameter mysql
$
SHOW VARIABLES LIKE '%parameter_name
%'; -- Show the values of all parameters mysql$
SHOW VARIABLES; -
PostgreSQL:
-- Show the value of a particular parameter postgresql=> SHOW
parameter_name
; -- Show the values of all parameters postgresql=> SHOW ALL;