Unable to connect to Postgress DB due to the authentication type 10 is not supported

前端 未结 4 1024
失恋的感觉
失恋的感觉 2020-12-19 21:42

I have recently tried my hands on Postgres. Installed it on local(PostgreSQL 13.0). Created a maven project and used Spring Data JPA, works just fine. Whereas when I tried u

4条回答
  •  遥遥无期
    2020-12-19 22:24

    I solved similar issue by applying below steps in PostgreSQL Version 13 :

    1. Change password_encryption to md5.

      File: C:\Program Files\PostgreSQL\13\data\postgresql.conf

    2. Change scram-sha-256 to md5 in host settings.

      File: C:\Program Files\PostgreSQL\13\data\pg_hba.conf.

      host all all 0.0.0.0/0 md5

    3. Change Password ( this restore password in md5 format).

      Example: ALTER ROLE postgres WITH PASSWORD 'root';

    4. Make sure you set listen_addresses = '*' if you are working non production environment.

      File : C:\Program Files\PostgreSQL\13\data\postgresql.conf

提交回复
热议问题