Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2924 from ngpestelos/increase-max-connections
Browse files Browse the repository at this point in the history
fix(database): increases max_connections to 250
  • Loading branch information
mboersma committed Jan 21, 2015
2 parents b9e650d + 31052eb commit 204afde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/templates/postgresql.conf
Expand Up @@ -61,7 +61,7 @@ external_pid_file = '/var/run/postgresql/9.3-main.pid' # write an extra PID fi
# defaults to 'localhost'; use '*' for all
# (change requires restart)
port = 5432 # (change requires restart)
max_connections = 100 # (change requires restart)
max_connections = 250 # (change requires restart)
# Note: Increasing max_connections costs ~400 bytes of shared memory per
# connection slot, plus lock space (see max_locks_per_transaction).
#superuser_reserved_connections = 3 # (change requires restart)
Expand Down

0 comments on commit 204afde

Please sign in to comment.