Postgresql之查看当前连接到数据库的client信息

2020-05-14 15:29:53 浏览数 (1)

    在使用postgresql时,会报connection too many问题,导致拿不到连接数,在mysql中可以通过show process list来查看连接到数据库的client信息,那么在postgresql中使用什么命令来查看呢?

    使用List-1中的命令

List-1

代码语言:javascript复制
SELECT * from pg_stat_activity ;

Reference

  1. (postgresql官方的邮件沟通列表) https://www.postgresql.org/message-id/200507011913.36840.erik.wasser@iquer.net
  2. https://ma.ttias.be/show-full-processlist-equivalent-of-mysql-for-postgresql/

0 人点赞