在使用postgresql时,会报connection too many问题,导致拿不到连接数,在mysql中可以通过show process list来查看连接到数据库的client信息,那么在postgresql中使用什么命令来查看呢?
使用List-1中的命令
List-1
代码语言:javascript复制SELECT * from pg_stat_activity ;
Reference
- (postgresql官方的邮件沟通列表) https://www.postgresql.org/message-id/200507011913.36840.erik.wasser@iquer.net
- https://ma.ttias.be/show-full-processlist-equivalent-of-mysql-for-postgresql/