sql >> Base de Datos >  >> RDS >> PostgreSQL

Cómo cambiar max_connections para Postgres a través del comando SQL

Cambiando max_connection el parámetro necesita un reinicio de Postgres

Comandos

  1. Marque max_connection solo para tener en cuenta el valor actual

    SHOW max_connections;
    
  2. Cambiar el valor de max_connection

    ALTER SYSTEM SET max_connections TO '500';
    
  3. Reinicie el servidor PostgreSQL