Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

  1. Open the config file

...

  1. :

    Code Block
    sudo nano /etc/postgresql/11/main/pg_hba.conf
  2. Then check if the following line exists

...

  1. . If it does not, add it.

    Code Block
    # TYPE  DATABASE        USER            ADDRESS                 METHOD
    host    all             all             127.0.0.1/32            md5

...

  1. Save and Exit

...

  1. Press Ctrl +

...

  1. S followed by

...

  1. Ctrl +

...

  1. X.

  2. Restart the PostgreSQL

...

  1. service

    Code Block
    sudo systemctl 

...

  1. restart postgresql

Check postgresql.conf

...

This file contains configuration options for PostgreSQL.To open

  1. Open the config file

...

  1. :

    Code Block
    sudo nano /etc/postgresql/11/main/postgresql.conf 

...

  1. Look for the line that says

...

  1. listen_addresses and change it to

...

  1. the following

    Code Block
    listen_addresses = 'localhost,127.0.0.1'  

...

    1. Note: If the line is commented out, denoted by a ‘#', delete the '#’.

  1. Save and Exit

...

  1. Press Ctrl +

...

  1. S followed by

...

  1. Ctrl +

...

  1. X.

  2. Restart the PostgreSQL

...

  1. service

    Code Block
    sudo systemctl 

...

  1. restart postgresql