无法修改 Amazon RDS 上剩余连接槽的默认参数组
Cannot modify a default parameter group for remaining connection slots on Amazon RDS
我不断得到:
SQLSTATE[08006] [7] FATAL: remaining connection slots are reserved
for non-replication superuser connections (SQL: select * from "sheeps"
where "name" = foobar limit 1)
于是想到修改参数组中的值(max_connections默认为270)
但是当我将 max_connections 更改为更高的值时,我得到:
"Error saving: Cannot modify a default parameter group. (Service:
AmazonRDS; Status Code: 400; Error Code: InvalidParameterValue;
Request ID: b5179a68-xxxx-44a8-b396-xxx; Proxy: null)"
我有最大限制 Laravel Vapor 报价:3008 mb。
您无法修改 AWS RDS 中的默认参数组。
您需要创建一个自定义参数组,在该组中设置 max_connections
,然后将其附加到您的 PostgreSQL RDS 实例。然后您需要重新启动 PostgreSQL RDS 实例以使更改生效。
我不断得到:
SQLSTATE[08006] [7] FATAL: remaining connection slots are reserved for non-replication superuser connections (SQL: select * from "sheeps" where "name" = foobar limit 1)
于是想到修改参数组中的值(max_connections默认为270)
但是当我将 max_connections 更改为更高的值时,我得到:
"Error saving: Cannot modify a default parameter group. (Service: AmazonRDS; Status Code: 400; Error Code: InvalidParameterValue; Request ID: b5179a68-xxxx-44a8-b396-xxx; Proxy: null)"
我有最大限制 Laravel Vapor 报价:3008 mb。
您无法修改 AWS RDS 中的默认参数组。
您需要创建一个自定义参数组,在该组中设置 max_connections
,然后将其附加到您的 PostgreSQL RDS 实例。然后您需要重新启动 PostgreSQL RDS 实例以使更改生效。