21

We have a hosted PostgreSQL, with no access to the system or *.conf files.

I do have a admin access and can connect to it using Oracle SQL developer. Can I run any command to increase the max_connections. All other parameters seems to be ok shared mem and buffers can hold more connections so there is not problem there.

2

2 Answers 2

55

Changing max_connection parameter needs a Postgres restart

Commands

  1. Check max_connection just to keep current value in mind

    SHOW max_connections;
    
  2. Change max_connection value

    ALTER SYSTEM SET max_connections TO '500';
    
  3. Restart PostgreSQL server

Sign up to request clarification or add additional context in comments.

1 Comment

I had done step 2 without restarting recently and it bit me.
1

Apparently, the hosted Postgres we are using does not provide this option. (compose.io)

So the work around is to use a pgbouncer to manage you connections better.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.