云数据库 GAUSSDB-重设参数:示例
示例
- 示例1:使用方式一修改 GaussDB 数据库主节点的最大连接数。
- 以操作系统用户omm登录数据库主节点。
- 使用如下命令连接数据库。
gsql -d postgres -p 8000
postgres为需要连接的数据库名称,8000为数据库主节点的端口号。
连接成功后,系统显示类似如下信息:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- 查看最大连接数。
1 2 3 4 5
openGauss=# SHOW max_connections; max_connections ----------------- 200 (1 row)
- 使用如下命令退出数据库。
1
openGauss=# \q
- 修改GaussDB数据库主节点的最大连接数。
gs_guc set -Z datanode -N all -I all -c "max_connections = 800"
- 重启数据库。
gs_om -t stop && gs_om -t start
- 使用如下命令连接数据库。
gsql -d postgres -p 8000
postgres为需要连接的数据库名称,8000为数据库主节点的端口号。
连接成功后,系统显示类似如下信息:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- 查看最大连接数。
1 2 3 4 5
openGauss=# SHOW max_connections; max_connections ----------------- 800 (1 row)
- 示例2:使用方式二设置数据库主节点的客户端认证最长时间参数“authentication_timeout”
- 以操作系统用户omm登录数据库主节点。
- 使用如下命令连接数据库。
gsql -d postgres -p 8000
postgres为需要连接的数据库名称,8000为数据库主节点的端口号。
连接成功后,系统显示类似如下信息:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- 查看客户端认证的最长时间。
1 2 3 4 5
openGauss=# SHOW authentication_timeout; authentication_timeout ------------------------ 1min (1 row)
- 使用如下命令退出数据库。
1
openGauss=# \q
- 修改数据库主节点的客户端认证最长时间。
gs_guc reload -Z datanode -N all -I all -c "authentication_timeout = 59s"
- 使用如下命令连接数据库。
gsql -d postgres -p 8000
postgres为需要连接的数据库名称,8000为数据库主节点的端口号。
连接成功后,系统显示类似如下信息:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- 查看客户端认证的最长时间。
1 2 3 4 5
openGauss=# SHOW authentication_timeout; authentication_timeout ------------------------ 59s (1 row)
- 示例3:修改GaussDB数据库节点的最大连接数。
- 以操作系统用户omm登录数据库主节点。
- 使用如下命令连接数据库。
gsql -d postgres -p 8000
postgres为需要连接的数据库名称,8000为数据库主节点的端口号。
连接成功后,系统显示类似如下信息:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- 查看最大连接数。
1 2 3 4 5
openGauss=# SHOW max_connections; max_connections ----------------- 200 (1 row)
- 使用如下命令退出数据库。
1
openGauss=# \q
- 修改GaussDB数据库节点的最大连接数。
gs_guc set -Z datanode -N all -I all -c "max_connections = 500"
- 重启数据库。
gs_om -t stop gs_om -t start
- 使用如下命令连接数据库。
gsql -d postgres -p 8000
postgres为需要连接的数据库名称,8000为数据库主节点的端口号。
连接成功后,系统显示类似如下信息:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- 查看最大连接数。
1 2 3 4 5
openGauss=# SHOW max_connections; max_connections ----------------- 500 (1 row)
- 示例4:设置数据库节点的客户端认证最长时间参数“authentication_timeout”
- 以操作系统用户omm登录数据库主节点。
- 使用如下命令连接数据库。
gsql -d postgres -p 8000
postgres为需要连接的数据库名称,8000为数据库主节点的端口号。
连接成功后,系统显示类似如下信息:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- 查看客户端认证的最长时间。
1 2 3 4 5
openGauss=# SHOW authentication_timeout; authentication_timeout ------------------------ 1min (1 row)
- 使用如下命令退出数据库。
1
openGauss=# \q
- 修改GaussDB数据库节点的客户端认证最长时间。
gs_guc reload -Z datanode -N all -I all -c "authentication_timeout = 30s"
- 使用如下命令连接数据库。
gsql -d postgres -p 8000
postgres为需要连接的数据库名称,8000为数据库主节点的端口号。
连接成功后,系统显示类似如下信息:
gsql((GaussDB Kernel VxxxRxxxCxx build f521c606) compiled at 2021-09-16 14:55:22 commit 2935 last mr 6385 release) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. openGauss=#
- 查看客户端认证的最长时间。
1 2 3 4 5
openGauss=# SHOW authentication_timeout; authentication_timeout ------------------------ 30s (1 row)
- GaussDB视频教程_gaussdb查看表结构语句_高斯数据库视频教程_华为云
- 流水线参数使用
- GaussDB使用技巧_高斯数据库下载_高斯数据库使用技巧_华为云
- GaussDB用法_GaussDB数据库使用方法_高斯数据库如何使用_华为云
- GaussDB是什么线程_GaussDB线程池_高斯数据库是什么线程-华为云
- GaussDB数据库参数调优_GaussDB版本_高斯数据库参数调优
- 云数据库RDS for MySQL读写分离_数据库代理_只读实例
- 分布式云原生集合示例_华为云分布式云原生_华为云UCS集合示例
- GaussDB学习_gaussdb教程_高斯数据库学习_华为云
- GaussDB数据库考试_GaussDB认证_高斯数据库考试_华为云