1、查询当前连接数:select count(*) from pg_stat_activity;2、查询最大连接数show max_connections;3、修改最大连接数SHOW config_file:查看postgresql.conf配置文件位置然后修改配置文件中max_connections=10244、重启服务service postgresql restart或者:pg_ctl restart