PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come modificare max_connections per Postgres tramite il comando SQL

Modifica di max_connection il parametro richiede un riavvio di Postgres

Comandi

  1. Controlla max_connection solo per tenere a mente il valore corrente

    SHOW max_connections;
    
  2. Modifica il valore max_connection

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