如何检查PG数据库连接数
一 检查连接数
select
to_char(now(),'yyyy-mm-dd hh24:mi:ss') "time"
,max_conn "max_conn(最大连接数)"
,now_conn "now_conn(当前连接数)"
,max_conn - now_conn "remain_conn(剩余连接数)"
from (
select
setting::int8 as max_conn
,(select count(*) from pg_stat_activity ) as now_conn
from pg_settings
where name = 'max_connections'
) a ;
正常连接数不超过总连接数的90%
二 kill掉所有的空闲连接
超级用户postgres杀掉所有的空闲连接
select pg_terminate_backend(pid) from pg_stat_activity WHERE state = 'idle';
如何检查PG数据库连接数
一 检查连接数select to_char(now(),'yyyy-mm-dd hh24:mi:ss') "time" ,max_conn "max_conn(最大连接数)" ,now...
点击下载文档
上一篇:mysql数据库如何备份binlog下一篇:如何检查PG数据库阻塞事务
本文2024-09-23 01:13:12发表“云苍穹知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-cangqiong-144543.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章