热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

修改postgresqlmax_connections

postgresql的默认最大连接数是200,如果连接数超过200就会报Somanyclientsalreay.当然你可以通过showmax_connections;

postgresql的默认最大连接数是200, 如果连接数超过200就会报 So many clients alreay. 当然你可以通过show max_connections;查看当前最大的连接数

 

修改最大连接数, 最重要的就是要修改shmmax(Maximum size of shared memory segment (bytes))

http://www.postgresql.org/docs/current/static/kernel-resources.html#SYSVIPC-PARAMETERS
这里有讲解

这里讲解都什么占用shm,(shared memory segment)
http://www.postgresql.org/docs/current/static/kernel-resources.html#SYSVIPC

这里有server start failed的信息描述
http://www.postgresql.org/docs/current/static/server-start.html#SERVER-START-FAILURES


在linux(CentOS)下修改shm可以用sysctl
1> sysctl -a 列出所有
sysctl -a | grep shmmax
2> sysctl -w 修改
sysctl -w kernel.shmmax=500000000(注意等号前后不能有空格)

转:https://www.cnblogs.com/john2000/archive/2012/03/27/2419032.html



推荐阅读
author-avatar
Android代码
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有