If Follow these steps if you're experiencing an issue logging into UAM, it may be a credential issue. To resolve this, follow these stepsa Credential Issue problem when starting up the server:
Check pg_hba.conf
...
This file contains the authentication rules for PostgreSQL.To open
Open the config file
...
:
Code Block sudo nano /etc/postgresql/11/main/pg_hba.conf
Then check if the following line exists
...
. If it does not, add it.
Code Block # TYPE DATABASE USER ADDRESS METHOD host all all 127.0.0.1/32 md5
...
Save and Exit
...
Press Ctrl +
...
S followed by
...
Ctrl +
...
X.
Restart the PostgreSQL
...
service
Code Block sudo systemctl
...
restart postgresql
Check postgresql.conf
...
This file contains configuration options for PostgreSQL.To open
Open the config file
...
:
Code Block sudo nano /etc/postgresql/11/main/postgresql.conf
...
Look for the line that says
...
listen_addresses and change it to
...
the following
Code Block listen_addresses = 'localhost,127.0.0.1'
...
Note: If the line is commented out, denoted by a ‘#', delete the '#’.
Save and Exit
...
Press Ctrl +
...
S followed by
...
Ctrl +
...
X.
Restart the PostgreSQL
...
service
Code Block sudo systemctl
...
restart postgresql