1.查询最大连接数(默认是100):
show max_connections;
2.最大连接数在postgresql.conf中设置(合适的最大连接数 used_connections/max_connections在85%左右):
max_connections = 500
如果不知道postgresql.conf在哪里,可以搜索一下:
find / -name postgresql.conf
3.重启PostgreSQL服务(以9.6版本为例):
在CentOS 6.x系统中
service postgresql-9.6 restart
在CentOS 7系统中
systemctl restart postgresql-9.4