postgres数据库最大连接数

–当前总共正在使用的连接数
postgres=# select count(1) from pg_stat_activity;
 
–显示系统允许的最大连接数
postgres=# show max_connections;
 
–显示系统保留的用户数
postgres=# show superuser_reserved_connections ;

 

–按照用户分组查看
select usename, count(*) from pg_stat_activity group by usename order by count(*) desc;

转载自:postgres数据库最大连接数

参考点击打开链接

    原文作者:arenn
    原文地址: https://blog.csdn.net/arenn/article/details/70174471
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞