Postgresql configuration
When Postgresql is started, you can connect to it using psql tool like :
psql -h localhost -p 5432 -U postgres
To read the configurations, you can type the following command :
SHOW all;
You can read a specific configuration like the max number of authorized connections
SHOW max_connections;