linux下postgresql的连接数配置
Posted JackGIS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下postgresql的连接数配置相关的知识,希望对你有一定的参考价值。
1、查询当前连接数:
select count(*) from pg_stat_activity;
2、查询最大连接数
show max_connections;
3、修改最大连接数
SHOW config_file:查看postgresql.conf配置文件位置
然后修改配置文件中max_connections=1024
4、重启服务
service postgresql restart
或者:pg_ctl restart
以上是关于linux下postgresql的连接数配置的主要内容,如果未能解决你的问题,请参考以下文章