postgresql如何修改最大连接数

1、合适的最大连接数

used_connections/max_connections在85%左右

2、修改最大连接数

postgresql最大连接数默认为100

(1)打开postgresql配置文件

vim /var/lib/pgsql/9.4/data/postgresql.conf

(2)修改最大连接数

max_connections = 100

(3)重启postgresql服务

在CentOS 6.x系统中

service postgresql-9.4 restart

在CentOS 7系统中

systemctl restart postgresql-9.4

Python学习网,大量的免费PostgreSQL入门教程,欢迎在线学习!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » postgresql如何修改最大连接数