connection limit exceeded for non-superusers

今天打开postgres数据库的时候,出现了这个:
connection limit exceeded for non-superusers_第1张图片

原因:超过了non-superusers 的连接限制
解决办法:修改postgresql.conf,增加max_connections设定值

max_connections = 100 # 这个设置要注意下,从库的max_connections必须要大于主库的

你可能感兴趣的:(数据库)