PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment changer max_connections pour Postgres via la commande SQL

Modification de max_connection le paramètre nécessite un redémarrage Postgres

Commandes

  1. Vérifiez max_connection juste pour garder la valeur actuelle à l'esprit

    SHOW max_connections;
    
  2. Modifier la valeur max_connection

    ALTER SYSTEM SET max_connections TO '500';
    
  3. Redémarrez le serveur PostgreSQL